cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
1048
Views
5
Helpful
2
Replies

how to assign 2 ip subnets to anyconnect vpn client?

zhulin211
Level 1
Level 1

Hi all, appreciate if you  can assist or clarify how to assign 2 different ip subnets ( or 2 different ip pool) on dhcp server to anyconnect client? I prefer to select a ip from first subnet and when the pool run out, client will try to reach second pool to select ip from it.

 

thanks!!!

1 Accepted Solution

Accepted Solutions

@zhulin211 

Do you want to use DHCP or a local pool on the ASA? Try the following:-

 

DHCP Scope

dhcp-network-scope 192.168.14.0
dhcp-network-scope 192.168.15.0

 

IP Pool

ip local pool POOL_1 192.168.14.10-192.168.14.254 mask 255.255.255.0
ip local pool POOL_2 192.168.15.10-192.168.15.254 mask 255.255.255.0
group-policy GP-1 attributes
address-pools value POOL_1 POOL_2

 

View solution in original post

2 Replies 2

@zhulin211 

Do you want to use DHCP or a local pool on the ASA? Try the following:-

 

DHCP Scope

dhcp-network-scope 192.168.14.0
dhcp-network-scope 192.168.15.0

 

IP Pool

ip local pool POOL_1 192.168.14.10-192.168.14.254 mask 255.255.255.0
ip local pool POOL_2 192.168.15.10-192.168.15.254 mask 255.255.255.0
group-policy GP-1 attributes
address-pools value POOL_1 POOL_2

 

Thanks Rob,

I am actually doing this TS research for my friend, he told second cli ( dhcp-network-scope 192.168.15.0) take privilege.

I will do some testing on my lab.

thanks you again Rob.