USD ($)
$
United States Dollar
India Rupee

How to Initialize all vEdges via CLI

Created by Deepak Sharma in Cisco SD-WAN Labs 29 Jan 2025
Share
«How to Initialize vBond and Add in ...

This SD-WAN lab practical will show you how to Initialize vBond and Add in vManage. You can practice along with this practical using our SD-WAN virtual lab.

Topology

Image description


Tasks 

● Upload the vEdge serial file to vManage provided to you via email 

● Configure the following system parameters on vEdge via CLI


Hostname Organization System-IP Site-ID vBond IP
vEdge1 viptela sdwan 10.1.1.21 1 200.1.1.4
vEdge2 viptela sdwan 192.168.5.22 2 200.1.1.4
vEdge3 viptela sdwan 172.16.4.23 3 200.1.1.4
vEdge4 viptela sdwan 10.1.4.24 4 200.1.1.4

● Configure Clock timezone Asia/Kolkata in all vEdges

● Configure VPN0 on vEdge with the following parameters 


Hostname Interface IP Address Tunnel Interface Default Route
vEdge1 Ge0/0 10.1.1.1/24 Encapsulation: Ipsec
Services: All, NetConf, SSHD
10.1.1.2
vEdge2 Ge0/0 192.168.5.2/24 Encapsulation: Ipsec
Services: All, NetConf, SSHD
192.168.5.1
vEdge3 Ge0/0 172.16.4.2/24 Encapsulation: Ipsec
Services: All, NetConf, SSHD
172.16.4.1
vEdge4 Ge0/0 10.1.4.2/24 Encapsulation: Ipsec
Services: All, NetConf, SSHD
10.1.4.1

● Configure VPN512 on all vEdges with the following parameters 

Interface: Eth0 

IP address: DHCP Client


Online Cisco SD-WAN TrainingLearn from expert trainers and master SD-WAN.Explore course
custom banner static image

Configuration and Verification 

Open the link (shorturl.at/mrEKL) on CA-Server (Windows Server) and download the serial file from the location, click on top right icon to download this file (this file contains 3 items).  

Note: This serial license file was being created from the Cisco portal (Authorize Access to Cisco portal) using parameters such as Organization-name etc. So, make sure you already the Organization-name matching which is given in the

Image description

On the vManage, navigate to Configuration->Devices. Click on “Upload WAN Edge List” which will open a window then click on choose  

Image description

Select the serial license file (which you downloaded in previous step) and then upload it. Also check box “Validate the uploaded vEdge List and send to controllers” and click on upload 

Image description

Confirm it by clicking on OK 

Image description

The WAN Edge list has now been uploaded successfully

Image description

Image description

Now start configuring system components, VPN0 and VPN512 on the vEdge devices, Get the console access of vEdges using default username “admin” and password “admin” 

vEdge-1

Image description

Now you can configure the basic configuration on vEdge1 such as hostname, organization name, system-IP, etc. as per required in this lab tasks 


config terminal 

 system 

  host-name vEdge1 

  organization-name “viptela sdwan” 

  system-ip 10.1.1.21 

  site-id 1 

  vbond 200.1.1.4  

  clock timezone Asia/Kolkata 

  commit 

Verify this system configuration on vEdge1 on its running configuration  

Image description

Now configure the parameters of VPN0 and VPN512 on vEdge1. It has Ge0/0 and Eth0 interfaces, configure Ge0/0 in VPN0 and Eth0 in VPN512. There are other interfaces as well, but we are not using them in our lab. 

Note: In our topology Ge0/0 and Eth0 interfaces are depicted as Eth1 and Eth2 respectively 


config 

vpn 0 

   interface Ge0/0 

   ip address 10.1.1.1/24 

   tunnel-interface 

    encapsulation ipsec 

    allow-service all 

    allow-service netconf 

    allow-service sshd 

    exit 

   no shut 

  ip route 0.0.0.0/0 10.1.1.2 

 vpn 512 

  interface eth0 

   ip dhcp-client 

   no shut 

 commit 

Verify this configuration in the vEdge1 running configuration of each VPN0 and VPN512 

Image description

Image description

Check the connectivity to its gateway which is HQ router. vEdge1 will also have the connectivity to other controllers on their management interfaces in VPN0 because for return traffic we already a default route configured on SDWAN controller towards HQ router IP address 200.1.1.1 

Note: Here we are checking connectivity to vEdge1 gateway and vBond. You can also check others  

Image description

vEdge-2 

Image description

Now you can configure the basic configuration on vEdge2 such as hostname, organization name, system-IP, etc. as per required in this lab tasks


config terminal 

 system 

  host-name vEdge2 

  organization-name “viptela sdwan” 

  system-ip 192.168.5.22 

  site-id 2 

  vbond 200.1.1.4  

  clock timezone Asia/Kolkata 

  commit 

Verify this system configuration on vEdge2 on its running configuration

Image description

Now configure the parameters of VPN0 and VPN512 on vEdge2. It has Ge0/0, Eth0 and Ge0/1 interfaces, configure Ge0/0 in VPN0 and Eth0 in VPN512. Ge0/1 is not yet configured which is going towards MPLS-Cloud router. There are other interfaces as well, but we are not using them in our lab. 

Note: In our topology Ge0/0, Ge0/1 and Eth0 interfaces are depicted as Eth1, Eth2 and Eth3 respectively


config 

vpn 0 

   interface Ge0/0 

   ip address 192.168.5.2/24 

   tunnel-interface 

    encapsulation ipsec 

    allow-service all 

    allow-service netconf 

    allow-service sshd 

    exit 

   no shut 

  ip route 0.0.0.0/0 192.168.5.1 

 vpn 512 

  interface eth0 

   ip dhcp-client 

   no shut 

 commit 

Verify this configuration in the vEdge2 running configuration of each VPN0 and VPN512 

Image description

Image description

Check the connectivity to its gateway which is Internet-Cloud router. vEdge2 will also have the connectivity to controllers on their management interfaces in VPN0 because for return traffic we already a default route configured on SDWAN controller towards HQ router IP address 200.1.1.1 and HQ has a default route towards Internet-cloud. 

Note: Here we are checking connectivity to vEdge2 gateway (Internet-Cloud) and vBond. You can also check for others  

Image description

vEdge-3 

Image description

Now you can configure the basic configuration on vEdge3 such as hostname, organization name, system-IP, etc. as per required in this lab tasks 


config terminal 

 system 

  host-name vEdge3 

  organization-name “viptela sdwan” 

  system-ip 172.16.4.23 

  site-id 3 

  vbond 200.1.1.4  

  clock timezone Asia/Kolkata 

  commit 

Verify this system configuration on vEdge3 on its running configuration

Image description

Now configure the parameters of VPN0 and VPN512 on vEdge3. It has Ge0/0, Eth0 and Ge0/1 interfaces, configure Ge0/0 in VPN0 and Eth0 in VPN512. Ge0/1 is not yet configured which is going towards MPLS-Cloud router. There are other interfaces as well, but we are not using them in our lab. 

Note: In our topology Ge0/0, Ge0/1 and Eth0 interfaces are depicted as Eth1, Eth2 and Eth3 respectively  


config 

vpn 0 

   interface Ge0/0 

   ip address 172.16.4.2/24 

   tunnel-interface 

    encapsulation ipsec 

    allow-service all 

    allow-service netconf 

    allow-service sshd 

    exit 

   no shut 

  ip route 0.0.0.0/0 172.16.4.1 

 vpn 512 

  interface eth0 

   ip dhcp-client 

   no shut 

 commit 

Verify this configuration in the vEdge3 running configuration of each VPN0 and VPN512 

Image description

Image description

Check the connectivity to its gateway which is Internet-Cloud router. vEdge3 will also have the connectivity to controllers on their management interfaces in VPN0 because for return traffic we already a default route configured on SDWAN controller towards HQ router IP address 200.1.1.1 and HQ has a default route towards Internet-cloud. 

Note: Here we are checking connectivity to vEdge3 gateway (Internet-Cloud) and vBond. You can also check for others

Image description

vEdge-4 

Image description

Now you can configure the basic configuration on vEdge4 such as hostname, organization name, system-IP, etc. as per required in this lab tasks 


config terminal 

 system 

  host-name vEdge4 

  organization-name “viptela sdwan” 

  system-ip 10.1.4.24 

  site-id 3 

  vbond 200.1.1.4  

  clock timezone Asia/Kolkata 

  commit 

Verify this system configuration on vEdge4 on its running configuration  

Image description

Now configure the parameters of VPN0 and VPN512 on vEdge4. It has Ge0/0, Eth0 and Ge0/1 interfaces, configure Ge0/0 in VPN0 and Eth0 in VPN512. Ge0/1 is not yet configured which is going towards MPLS-Cloud router. There are other interfaces as well, but we are not using them in our lab. 

Note: In our topology Ge0/0, Ge0/1 and Eth0 interfaces are depicted as Eth1, Eth2 and Eth3 respectively


config 

vpn 0 

   interface Ge0/0 

   ip address 10.1.4.2/24 

   tunnel-interface 

    encapsulation ipsec 

    allow-service all 

    allow-service netconf 

    allow-service sshd 

    exit 

   no shut 

  ip route 0.0.0.0/0 10.1.4.1 

 vpn 512 

  interface eth0 

   ip dhcp-client 

   no shut 

 commit 

Verify this configuration in the vEdge4 running configuration of each VPN0 and VPN512 

Image description

Check the connectivity to its gateway which is Internet-Cloud router. vEdge4 will also have the connectivity to controllers on their management interfaces in VPN0 because for return traffic we already a default route configured on SDWAN controller towards HQ router IP address 200.1.1.1 and HQ has a default route towards Internet-cloud. 

Note: Here we are checking connectivity to vEdge3 gateway (Internet-Cloud) and vBond. You can also check for others

Image description

Deepak Sharma

He is a senior solution network architect and currently working with one of the largest financial company. He has an impressive academic and training background. He has completed his B.Tech and MBA, which makes him both technically and managerial proficient. He has also completed more than 450 online and offline training courses, both in India and ...

More... | Author`s Bog | Book a Meeting

Related Articles

#Explore latest news and articles

How to Initialize and Configure VManage 29 Jan 2025

How to Initialize and Configure VManage

Discover how to initialize and configure Cisco vManage with this step-by-step guide, ensuring optimal SD-WAN management and seamless network operations.
Configuring Switch and Installing CA Server 28 Jan 2025

Configuring Switch and Installing CA Server

In this SD-WAN lab practical, learn how to effectively configure switches and install a CA server.
How to Configure WAN Cloud Components - SD-WAN Lab Practical 28 Jan 2025

How to Configure WAN Cloud Components - SD-WAN Lab Practical

This SD-WAN lab practical shows how to configure WAN cloud components in a step-by-step process and also shows the verification steps.

Comments (0)

Share

Share this post with others

Contact learning advisor

Captcha image