-
Backtrack IP 설정Linux 2014. 9. 20. 22:02
명령어로 IP 변경
root@bt:~# ifconfig eth0 192.168.1.112/24 root@bt:~# route add default gw 192.168.1.1 root@bt:~# echo nameserver 8.8.8.8 > /etc/resolv.conf
설정파일 변경으로 IP 변경
/etc/network/interfaces 수정
# This file describes the network interfaces available on your system # and how to activate them. For more information, see interfaces(5). # The loopback network interface auto lo iface lo inet loopback # The primary network interface auto eth0 iface eth0 inet static address 192.168.1.112 netmask 255.255.255.0 network 192.168.1.0 broadcast 192.168.1.255 gateway 192.168.1.1
다음 명령어 실행
root@bt:~# update-rc.d networking defaults root@bt:~# /etc/init.d/networking restart
'Linux' 카테고리의 다른 글
VMware Real로 인식시키는 법 (1) 2013.04.24 아파치, php 버전 숨기기 (0) 2013.03.01 Backtrack5 metasploit 업데이트 후 오류 (0) 2013.02.16 리눅스 시간 동기화 (0) 2013.01.15 Ubuntu 재부팅시 resolv.conf 초기화 될때 (0) 2012.08.02