본문 바로가기

System Engineer

Windows Static route

목적 :
- VPN 통신을 하기 위해, 서비스 interface 별도 interface 설정

서버 설정 상태 : 
- nic1 : 10.10.10.77 / 24 (default-gw : 10.10.10.1)
- nic2 : 192.168.125.77 / 24  - static route 할 interface (interface 설정에 gateway 넣지 않음)

static route 추가 명령어 (-p : permanent)
형식> route -p ADD destination_network MASK subnet_mask gateway_ip [metric_cost]
cmd> route -p ADD 123.200.9.11 MASK 255.255.255.255 192.168.125.1
- 123.200.9.11 로 가기 위해, (nic2 인터페이스를 통해) 192.168.125.1 로 보내도록 설정

추가한 route 는 레지스트리에서 등록됨.

static route 제거 명령어
형식> route delete dest_network
cmd> route delete 123.200.9.11