본문 바로가기
Study/OS

Single ethernet card with multi interfaces (다중 IP 할당)

by SeulKom 2009. 11. 23.

일반적인 ethernet 설정
auto [interface_name]
iface [interface_name] inet static
address
network
netmask
broadcast

다중 IP 설정 (interface 이름 설정에서 ':' 로 설정)
auto [interface_name] [interface_name]:[link_name]
iface [interface_name] inet static
address
network
netmask
broadcast
iface [interface_name]:[link_name] inet static
address
network
netmask

설정 후,
# ifdown eth0
# ifup eth0

실행 하면 ifconfig 확인 시 link_name으로 연결된 ip도 할당 된 것을 볼 수 있다.

예제는 /usr/share/doc/ifupdown/examples/network-interfaces 에서 볼 수 있다.