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

How to set UniFi controller as a Windows service

Download the software: https://www.ui.com/download/unifi/ Close any instances of the UniFi software on the controller Open…

PowerShell: Set DNS Records on Remote Computers

# setDnsEntries.ps1 $computernames=@( "$env:computername" ) $dnsServers=@( "8.8.8.8", "4.4.2.2" ) $results=[hashtable]@{} foreach ($computername in $computernames){ $psSession=new-pssession…

Setup PXE Client Booting for Microsoft Deployment Toolkit with Multiple VLANs

Part A: Configure Clients Ensure that machines on the network would boot on a predetermined…