슬레이브04는 인터넷 연결이 없고,
슬레이브05는 인터넷에 연결된 상태에서
슬레이브05를 통해 슬레이브04로 ssh 접근이 가능하게 하고 싶다.
따라서 슬레이브05에는 이더넷이 두 개 연결되어 있는 것.(하나는 공유기, 하나는 슬레이브04)
이 상황에서의 설정을 살펴보자.
먼저, 슬레이브04에서 다음과 같이 한다.
ifconfig로 연결된 이더넷의 인터페이스 이름을 복사한 후,
sudo vi /etc/network/interfaces
auto 인터페이스명
iface 인터페이스명 inet static
address 10.0.0.4(슬레이브04의 ip)
netmask 255.255.255.255
gateway 10.0.0.5(슬레이브05의 ip)
up route add -net 10.0.0.5 netmask 255.255.255.255 gw 10.0.0.5
sudo /etc/init.d/networking restart
그 다음, 슬레이브05에서 다음과 같이 설정한다.
ifconfig로 연결된 이더넷의 인터페이스 이름을 복사한 후,
sudo vi /etc/network/interfaces
auto 인터페이스명
iface 인터페이스명 inet static
address 10.0.0.5(슬레이브05의 ip)
netmask 255.255.255.0
gateway 10.0.0.4(슬레이브04의 ip)
up route add -net 10.0.0.4 netmask 255.255.255.255 gw 10.0.0.4
sudo /etc/init.d/networking restart