반응형
정책적 라우팅(Policy Based Routing)
PBR 구문 형식
- Destination 이 없으면 0.0.0.0/0(any) 네트워크가 생략되어 있음(생략 가능)
- policy (번호) : PBR 우선 순위 (라우팅의 AD 값과 비슷함)
- table (번호) : PBR 의 목적지 주소와 GW 아이피 주소 및 인터페이스
(config)# ip route policy [policy_num] table [table_num] source [source] destination [destination] [gateway] [출력 Interface명] [dhcp]
터널 연결용 PBR 설정
유동 IP PBR 설정
(config)# ip route policy 1 table 1 source eth1 eth1 dhcp
고정 IP PBR 설정
(config)# ip route policy 2 table 2 source eth2 192.168.0.254 eth2
일반적인 PBR 설정
192.168.1.100/32 사용자가 10.10.10.10/32 목적지로 갈때 eth1 인터페이스로 나갑니다.
(config)# ip route policy 3 table 3 source 192.168.1.100/32 destination 10.10.10.10/32 eth1 dhcp
192.168.1.200/32 사용자가 10.10.10.10/32 목적지로 갈때 eth2 인터페이스 GW로 나갑니다.
(config)# ip route policy 4 table 4 source 192.168.1.200/32 destination 10.10.10.10/32 172.16.0.254 eth2
반응형
'VPN > NEXG' 카테고리의 다른 글
[NEXG] Interface Track, NAT 설정 (0) | 2023.10.08 |
---|---|
[NEXG] 방화벽 보안(Firewall) 설정 (0) | 2023.02.26 |
[NEXG] Offloading 설정 (Config) (0) | 2023.02.26 |
[NEXG] 기본 설정(Config) (0) | 2023.02.26 |