하나의 물리적 NIC에 복수개의 인터페이스 설정하기

/etc/network/interfaces 파일 설정
auto eth0 eth0:1
iface eth0 inet static
    address 192.168.0.70
    netmask 255.255.255.0
    broadcast 192.168.0.255
    gateway 192.168.0.1
    metric 0

iface eth0:1 inet static
    address 192.168.123.70
    netmask 255.255.255.0
    network 192.168.123.0

위와 같이 설정 후
# ifdown eth0
# ifup eth0


해 주면 eth0에 관련된 인터페이스들을 띄울 수 있다.


'리눅스' 카테고리의 다른 글

PulseAudio 설치하기  (0) 2008.11.20
Amarok Full Screen - Amarok  (0) 2008.11.20
VirtualBox on Linux 에서 usbfs 인식시키기  (0) 2008.11.17
vmware 마우스 휠 살리기  (0) 2008.09.24
Nemiver - gnome 환경에서의 gdb 디버거  (0) 2008.09.01