# 192.168.200.0 대역으로 가는 트래픽은 네트워크 인터페이스 enp0s3을 통하도록 라우팅 테이블 생성
secu@secu-VirtualBox:~$ sudo route add -net 192.168.200.0 netmask 255.255.255.0 dev enp0s3
secu@secu-VirtualBox:~$ route
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
default _gateway 0.0.0.0 UG 100 0 0 enp0s3
link-local 0.0.0.0 255.255.0.0 U 1000 0 0 enp0s3
192.168.100.0 0.0.0.0 255.255.255.0 U 100 0 0 enp0s3
192.168.200.0 0.0.0.0 255.255.255.0 U 0 0 0 enp0s3
← 추가된 라우팅 테이블 내용 확인
Tip ≣
최근에는 route 명령어를 ip route 명령어로 대체해 사용하기도 한다.
route는 ip route show 명령어로 대체할 수 있으며, 라우팅 테이블을 추가하는 route add는 ip route add 명령으로 대체할 수 있다.