컴퓨터/오픈PC 큐비보드
8. 큐비트럭 고정 ip 부여
아브아카
2014. 4. 23. 14:33
큐비트럭을 서버로서 활용하기 위해서는 고정 ip가 부여되어야한다.
lubuntu (루분투) x 윈도우 환경에서 네트워크 설정을 해 보았는데, 적용은 안되는 모양이다.
결국 리눅스 터미널쪽에서 환경설정 파일을 수정해서 ip를 부여했다.
sudo nano /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 # The primary network interface auto eth0 iface eth0 inet dhcp
위 내용에서 빨간 부분을 아래로 변경 (위 설정은 DHCP 자동 IP로 설정된 모습)
auto eth0 iface eth0 inet static address 192.168.0.37 netmask 255.255.255.0 gateway 192.168.0.1 dns-nameservers 168.126.63.1, 168.126.63.2
설정이 끝나면 아래 명령어로 네트워크 재시작
/etc/init.d/networking restart