학습자료/리눅스 2013. 11. 6. 11:48

(ubuntu interface no IP address on the network)

 

vlan 구성 중, eth0에 이전에 사용하던 ip가 사라지지 않았다.

그때 interfaces 파일에 아래와 같이 기입하면 된다. 

 

 

$vim /etc/network/interfaces

auto eth0
iface eth0 inet manual
       up ifconfig $IFACE 0.0.0.0 up
       up ip link set $IFACE promisc on
       down ip link set $IFACE promisc off
       down ifconfig $IFACE down

 

$sudo ifdown eth0.20

$sudo ifdown eth0

 

$service networking restart

 

 

 

이전에 사용하는 interface를 down시켜 놓고 재시작하여야 적용된다.

 

[참고] http://www.cyberciti.biz/faq/setting-up-an-network-interfaces-file/

posted by cozyboy
: