우분투는 설치할때 자동으로 DHCP로 설정되고, 포트가 여러개여도 interface에서 하나만
인식한 상태로 초기에 설치된다. 그래픽 모드 않쓰고 텍스트 모드만 사용한다면 좀 더 난감함을 느낀다.
근데..
단순히 추가해 주면 된다.
/etc/network/interface
위 파일을 수정해 주면 된다.
------------------------------------------------------------------
# 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.0.201
netmask 255.255.255.0
#broadcast 192.168.0.255
gateway 192.168.0.1
# dns-* options are implemented by the resolvconf package, if installed
dns-nameservers 168.126.63.1
auto eth1
iface eth1 inet static
address 10.10.10.1
netmask 255.255.255.0
---------------------------------------------------------------------------
auto eth0 부분이 초반 dhcp로 설정되는 부분인데, 고정 ip 설정해주면 된다.
다른 추가적인 포트의 사용을 원하는 경우 auto ethX 해서
해당 내용을 추가해 주면 된다.
설정을 마쳤다면 재시작~
/etc/init.d/networking restart
확인
ifconfig