-
router 만들기.정보보안/리눅스 2020. 4. 17. 10:37
시스템 구성
router 만들기
네트워크 드라이버를 2개 설정한다.
네트워크 드라이버 1번
ip : 192.168.20.254
net : 255.255.255.0
gw : 192.168.20.1
네트워크 드라이버 2번
ip : 192.168.30.1
net : 255.255.255.0
gw :
설정이 완료되었다면 패킷 포워드를 실행 시켜주어야한다.
[root@localhost ~]# sysctl -w net.ipv4.ip_forward=1 net.ipv4.ip_forward = 1 [root@router ~]# sysctl -p
재부팅을 하는 경우 항상 다시 실행해 주어야 한다. 따라서 이 경우 자동명령어를 추가해 두자.
xxx.xxx.20.21 설정
게이트웨이가 xxx.xxx.20.1 로 설정되어 있으므로 xxx.xxx.30.xxx로 접속하기 위해 예외 처리를 해주어야 한다.
[root@localhost ~]# route add -net 192.168.30.0 netmask 255.255.255.0 gw 192.168.20.254 [root@localhost ~]# route Kernel IP routing table Destination Gateway Genmask Flags Metric Ref Use Iface default gateway 0.0.0.0 UG 0 0 0 ens33 link-local 0.0.0.0 255.255.0.0 U 1002 0 0 ens33 192.168.20.0 0.0.0.0 255.255.255.0 U 0 0 0 ens33 192.168.30.0 192.168.20.254 255.255.255.0 UG 0 0 0 ens33 192.168.122.0 0.0.0.0 255.255.255.0 U 0 0 0 virbr0
ping을 이용해 통신이 가능한지 확인하자!! 재부팅시 사라짐!!
xxx.xxx.20.21 ping 확인
[root@localhost ~]# ping 192.168.30.21 PING 192.168.30.21 (192.168.30.21) 56(84) bytes of data. 64 bytes from 192.168.30.21: icmp_seq=1 ttl=63 time=0.595 ms 64 bytes from 192.168.30.21: icmp_seq=2 ttl=63 time=0.526 ms 64 bytes from 192.168.30.21: icmp_seq=3 ttl=63 time=0.639 ms
xxx.xxx.30.21 ping 확인
[root@localhost ~]# ping 192.168.20.21 PING 192.168.20.21 (192.168.20.21) 56(84) bytes of data. 64 bytes from 192.168.20.21: icmp_seq=1 ttl=63 time=0.596 ms 64 bytes from 192.168.20.21: icmp_seq=2 ttl=63 time=0.551 ms 64 bytes from 192.168.20.21: icmp_seq=3 ttl=63 time=0.536 ms
'정보보안 > 리눅스' 카테고리의 다른 글
DNS_02_slave name server (0) 2020.04.20 DNS_0101_Zone파일 구성 (0) 2020.04.20 vsFTP 설치하고 실행하기 (0) 2020.04.16 네트워크 자동실행 설정하기 (0) 2020.04.16 Rsync (0) 2020.04.13