글 수 367
관리자에게 IP , Gateway , Subnetmask, DNS 의 정보를 얻은 뒤
다 음 단계로 설정하였다.
1. 고정아이피 설정하기
sudo vim /etc/network/interfaces
# 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
auto eth0
iface eth0 inet static
address 203.xxx.xxx.xxx
netmask 255.255.255.0
gateway 203.xxx.xxx.xxx
2. DNS 설정하기
sudo vim /etc/resolv.conf
domain xxx.com
search xxx.com
nameserver 203.xxx.xxx.xxx
nameserver 란에 관리자에게서 받은 DNS 주소를 입력한다. 내 경우 회사였기 때문에, domain이나 search 정보는 기본으로 잡혀있었다.
3. 변경된 설정 적용하기
sudo /etc/init.d/networking restart
이렇게 성공적으로 고정아이피가 설정되었다
다 음 단계로 설정하였다.
1. 고정아이피 설정하기
sudo vim /etc/network/interfaces
# 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
auto eth0
iface eth0 inet static
address 203.xxx.xxx.xxx
netmask 255.255.255.0
gateway 203.xxx.xxx.xxx
2. DNS 설정하기
sudo vim /etc/resolv.conf
domain xxx.com
search xxx.com
nameserver 203.xxx.xxx.xxx
nameserver 란에 관리자에게서 받은 DNS 주소를 입력한다. 내 경우 회사였기 때문에, domain이나 search 정보는 기본으로 잡혀있었다.
3. 변경된 설정 적용하기
sudo /etc/init.d/networking restart
이렇게 성공적으로 고정아이피가 설정되었다