08-09-2024 06:19 AM
Hi,
Our customer has two Cisco ISE deployeds like this:
Gig0: Management Only (HTTPS/SSH), TACACS+/RADIUS to/from NADs and Guest
We need to configure a separate interface for Guest Access in the DMZ, so the configuration will be like this:
Gig0: Management Only (HTTPS/SSH), TACACS+/RADIUS
Gig2: Guest Interface (Tied to WebAuth Portal)
Its necessary to create static route for my guest interface?
Solved! Go to Solution.
08-09-2024 06:30 AM
@Leonardo Santana yes, you need to configure a static route on each PSN hosting the Guest portal for traffic to/from dedicated the guest interface using the command
ip route 0.0.0.0 0.0.0.0 <next hop ip>
08-09-2024 06:22 AM
08-09-2024 06:36 AM
Friend
Check link you will get answer for your Q' there is also ciscolive check it
MHM
08-09-2024 06:30 AM
@Leonardo Santana yes, you need to configure a static route on each PSN hosting the Guest portal for traffic to/from dedicated the guest interface using the command
ip route 0.0.0.0 0.0.0.0 <next hop ip>
08-09-2024 06:34 AM
Hi Rob,
Thanks for your answer. After configuring the ip route how ISE will select the correct interface at show ip route?
08-09-2024 06:39 AM - edited 08-09-2024 06:41 AM
@Leonardo Santana the traffic to/from the Eth0 interface would be routed via the gateway defined with the default-gateway command. Whereas traffic to/from the dedicated interface for the guest portal would use the gateway as per ip route command.
08-09-2024 07:12 AM
Rob,
Like this, a ip route 0.0.0.0 0.0.0.0 pointing to he default gw of my guest network.
ISE InterfaceIPNetworkGateway
192.168.114.10 192.168.114.0 192.168.114.1
192.168.115.10 192.168.115.0 192.168.115.1
192.168.116.10 192.168.116.0 192.168.116.1
192.168.117.10 192.168.117.0 192.168.117.1
ise/admin(config)# ip route 0.0.0.0 0.0.0.0 192.168.114.1
ise/admin(config)# ip route 0.0.0.0 0.0.0.0 192.168.115.1
ise/admin(config)# ip route 0.0.0.0 0.0.0.0 192.168.116.1
ise/admin(config)# ip route 0.0.0.0 0.0.0.0 192.168.117.1
ise/admin(config)# ip default-gateway 192.168.118.1
08-09-2024 07:22 AM
@Leonardo Santana example from an implementation I designed, where Gi1 interface was dedicated for Guest traffic.
PSN-1/admin (config)# interface GigabitEthernet 1
PSN-1/admin (config-GigabitEthernet)# ip address 172.21.1.68 255.255.255.224
% Changing the IP address might cause ise services to restart
Continue with IP address change? Y/N [N]: Y
------SERVICES RESTART-------
PSN-1/admin (config-GigabitEthernet)# exit
PSN-1/admin (config)# ip route 0.0.0.0 0.0.0.0 172.21.1.65
08-09-2024 07:42 AM
we always configure default route via G0 and 1 or more static routes for guest user subnets via G2 in your case and it works.
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide