학습자료/리눅스
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/
'학습자료 > 리눅스' 카테고리의 다른 글
cifs mount/unmount (0) | 2014.05.30 |
---|---|
[linux] Ubuntu nginx + php + php5-fpm + sqlite 설정 (+ pdo sqlite) (0) | 2014.04.10 |
ubuntu 저장소 변경 (0) | 2013.11.06 |
[linux]Ubuntu의 apt-get 명령어 정리 (0) | 2013.08.22 |
리눅스 버전확인 명령어 (0) | 2013.07.08 |