Posted On March 31, 2019

Configure VPN from AWS to CPE (Juniper Router)

kimconnect 0 comments
blog.KimConnect.com >> Networking , Virtualization >> Configure VPN from AWS to CPE (Juniper Router)
1. Create VPN connection from AWS portal and download the configuration file
2. Import the configuration file onto CPE
- Edit the config file to ensure loopback ports are not coinciding with existing services
- Plug USB storage into router >> Log onto router Web UI >> Maintain >> Snapshot >> Take snapshot
- Connect via SSH >> cli >> "request system configuration rescue save" >> configure >> [paste the configuration file]

Error:
[edit security ipsec]
'vpn vpn-someid-1'
Referenced bind-interface is referred by multiple vpn objects. Enable multipoint under [edit interfaces st0.1]
[edit security zones security-zone LexisNexis]
'interfaces st0.1'
Interface st0.1 already assigned to another zone
error: configuration check-out failed
[edit]

Solution to error:
- access web GUI >> IPSec VPN >> Dynamic VPN >> Global Settings >> Select Access Profile, choose something >> OK >> Actions >> Discard >> OK >> Retry commands after fixes

Leave a Reply

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

Related Post

Some Useful Windows Networking Commands

# Checking WinRM connections PS C:\Windows\system32> netstat -ano|select-string ":5985" TCP 0.0.0.0:5985 0.0.0.0:0 LISTENING 4 TCP…

CCIE Exam Day Overview

1. Network Principles 2. Layer 2 Technologies: LAN switching & WAN Circuits, layer 2 multicast…

PowerShell: Rename Hyper-V Object and Clustered Role Resource

$oldName='testWindows' $newName='server01.intranet.kimconnect.com' # Rename Hyper-V Clustered Resource: Guess VM $vm=Get-clustergroup -Cluster (get-cluster).Name -Name $oldName $vm.Name=$newName…