Posted On March 31, 2019

How to Setup Site To Site VPN with SonicWall

kimconnect 0 comments
blog.KimConnect.com >> Networking >> How to Setup Site To Site VPN with SonicWall
– Log onto Sonicwall GUI
– Click on VPN >> Settings => Add >> Policy type = Site to Site, IPSec Primary Gateway = local gateway IP >> Proposals: Main Mode (must set Local IKE ID & Peer IKE ID as static IP), Aggressive Mode (can set Local & Peer IKE to IP, Firewall Identifier… Useful for dynamic IPs and no access to NAT gateway), or IKEv2 Mode (this mode accommodates for dynamic and static IP mixings; must click on VNP-Advanced-Configure = Group 14, AES-256, SHA1)
 
Note:
– UDP 500, UDP 4500, 443 (https management), 4433 (SSL-VPN) are needed to be forwarded to VPN appliance if it is sitting behind a NAT device
– Enable http/https management on device to allow remote management

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

PowerShell: Check VLAN of Windows Machine

Le Kommand: Get-NetAdapter|select Name,VlanID Sample Outputs PS C:\Windows\system32> Get-NetAdapter|select Name,VlanIDName VlanID---- ------Ethernet 1 0 PS…

How to Use Windows Built-in Packet Tracer

Update: although this is a fun exercise to use Microsoft tools to analyze traffic, it…

PowerShell: Quickly Test Connectivity from a List of Sources toward a Destination on a Specific Port

# testRemotePort.ps1 $connectFrom=@' windows1 windows2 '@ $connectTo=@' \\servername\sharename '@ $testPort=445 $sources=@($connectFrom -split "`n")|%{$_.Trim()} $destinations=@($connectTo -split…