•
|
•
|
•
|
5
|
6
|
The command prompt changes and adds the word config to distinguish it from the normal mode. Now you can configure all the settings, enable and disable the VPNs, and configure the firewall.
|
1
|
In configure mode, create an address object for the remote network, specifying the name, zone assignment, type, and address. In this example, we use the name OfficeLAN:
|
(config[NSA3600]> address-object Office LAN
(config-address-object[OfficeLAN])>
(config-address-object[OfficeLAN])> zone VPN
(config-address-object[OfficeLAN])> network 192.168.15.0 255.255.255.0
(config-address-object[OfficeLAN])> finished
2
|
NSA3600 > show address-object OfficeLAN
The output will be similar to the following:
address-object OfficeLAN
network 192.168.15.0 255.255.255.0
zone VPN
vpn policy [name] [authentication method]
(config[NSA3600])> vpn policy OfficeVPN pre-shared
(config-vpn[OfficeVPN])>
(config-vpn[OfficeVPN])> pre-shared-secret sonicwall
(config-vpn[OfficeVPN])> gw ip-address 10.50.31.104
(config-vpn[OfficeVPN])> network local address-object "LAN Primary Subnet"
(config-vpn[OfficeVPN])> network remote address-object "OfficeLAN"
(config-vpn[OfficeVPN])> proposal ike main encr triple-des auth sha1 dh 2
lifetime 28800
(config-vpn[OfficeVPN])> proposal ipsec esp encr triple-des auth sha1 dh no
lifetime 28800
(config-vpn[OfficeVPN])> advanced keepalive
9
|
To enable the VPN policy, use the command vpn enable [name]:
|
(config[NSA3600])> vpn enable "OfficeVPN"
(config-vpn[OfficeVPN])> finished
(config[NSA3600])>
The configuration is complete.
To view a list of all the configured VPN policies:
1
|
Type the command show vpn policy. The output is similar to the following:
|
(config[NSA3600])> show vpn policy
Policy: WAN GroupVPN (Disabled)
Key Mode: Pre-shared
Pre Shared Secret: DE65AD2228EED75A
IKE ID:
Local: IP Address
Peer: IP Address
Network:
Local: LAN Primary Subnet
Remote: OfficeLAN
(config[NSA3600])> show vpn policy "OfficeVPN"
The output is similar to the following:
IKE ID:
Local: IP Address
Peer: IP Address
Network:
Local: LAN Primary Subnet
Remote: OfficeLAN
3
|