Hi all,
I'm trying to get an SSL-VPN up on an ASA, I know how to do this configuration but I can't figure out how to get the ASA to work 'correctly'. Never used this platform before.
Image to help. (where it says public IP, that should also say G 0/0 and not on the switch).
So I have the management interface configured with 9.9.6.4/24 which connects directly to a L3 switch which does all of the management routing.
Int g 0/0 has a public IP and I've named the port 'external'
Int g 0/1 has 9.9.3.253 as the IP which goes to the same L3 switch. This is called internal.
When I use ping management x.x.x.x I can ping around the 9.9.6.0/24 network as I need to. (it would be nice to ping 9.9.0.0/16, but routing conflicts come later)
I can also ping onto the internet from the external port with the public IP.
Now the 9.9.3.0/24 network is the range of IP addresses I want to give out for the VPN connection.
When I try and ping internal x.x.x.x though I can only ping the L3 switch, 9.9.3.254 and nothing else, not even another SVI on the l3 switch.
This is annoying me... any suggestions?? Thanks
I'm trying to get an SSL-VPN up on an ASA, I know how to do this configuration but I can't figure out how to get the ASA to work 'correctly'. Never used this platform before.
Image to help. (where it says public IP, that should also say G 0/0 and not on the switch).
So I have the management interface configured with 9.9.6.4/24 which connects directly to a L3 switch which does all of the management routing.
Int g 0/0 has a public IP and I've named the port 'external'
Int g 0/1 has 9.9.3.253 as the IP which goes to the same L3 switch. This is called internal.
When I use ping management x.x.x.x I can ping around the 9.9.6.0/24 network as I need to. (it would be nice to ping 9.9.0.0/16, but routing conflicts come later)
I can also ping onto the internet from the external port with the public IP.
Now the 9.9.3.0/24 network is the range of IP addresses I want to give out for the VPN connection.
When I try and ping internal x.x.x.x though I can only ping the L3 switch, 9.9.3.254 and nothing else, not even another SVI on the l3 switch.
This is annoying me... any suggestions?? Thanks
Code:
interface Management0/0
management-only
nameif Management
security-level 100
ip address 9.9.6.4 255.255.255.0
SSL-VPN# sh run int g 0/0
!
interface GigabitEthernet0/0
nameif external
security-level 50
ip address PUBLIC_IP 255.255.255.240
SSL-VPN# sh run int g 0/1
!
interface GigabitEthernet0/1
nameif internal
security-level 50
ip address 9.9.3.253 255.255.255.0
SSL-VPN# sh run | i route
route external 0.0.0.0 0.0.0.0 PUBLIC_IP_GATEWAY 1
route internal 9.9.0.0 255.255.0.0 9.9.3.254 1
Last edited: