Picking back up from certificate installation, lets take inventory of our routers:

HostnameSystem IPUsernamePassword
8000v-1 1.1.1.40adminCisco
8000v-2 1.1.1.50adminCisco
8000v-3 1.1.1.60adminCisco
8000v-4 1.1.1.70adminCisco

Bootup the first 8000v and type the following to bring the router into controller mode:

controller-mode enable

After it reboots, type the following to make sure its in controller-managed mode (controller-managed)

show version | i operating

This should reflect controller mode.

From there, lets put the basic configs on the first router

Here is the bootstrap config I will use:

8000v-1

config-transaction
hostname 8000v-1
system
system-ip 1.1.1.40
site-id 100
organization-name Chickenhawk
vbond 10.1.1.10
interface GigabitEthernet1
ip address 10.1.1.40 255.255.255.0
no shutdown
interface Tunnel1
ip unnumbered GigabitEthernet1
tunnel source GigabitEthernet1

Now we need to set color on the interface:

sdwan
interface GigabitEthernet1
tunnel-interface
color biz-internet
encapsulation ipsec
allow-service sshd
allow-service all
exit
commit


8000v-2

config-transaction
hostname 8000v-2
system
system-ip 1.1.1.50
site-id 100
organization-name Chickenhawk
vbond 10.1.1.10
interface GigabitEthernet1
ip address 10.1.1.50 255.255.255.0
no shutdown
interface Tunnel1
ip unnumbered GigabitEthernet1
tunnel source GigabitEthernet1
tunnel mode sdwan

Now we need to set color on the interface:

sdwan
interface GigabitEthernet1
tunnel-interface
color custom1
encapsulation ipsec
allow-service sshd
allow-service all
exit
commit

8000v-3

config-transaction
hostname 8000v-3
system
system-ip 1.1.1.60
site-id 100
organization-name Chickenhawk
vbond 10.1.1.10
interface GigabitEthernet1
ip address 10.1.1.60 255.255.255.0
no shutdown
interface Tunnel1
ip unnumbered GigabitEthernet1
tunnel source GigabitEthernet1
tunnel mode sdwan

Now we need to set color on the interface:

sdwan
interface GigabitEthernet1
tunnel-interface
color custom2
encapsulation ipsec
allow-service sshd
allow-service all
exit
commit

8000v-4

config-transaction
hostname 8000v-4
system
system-ip 1.1.1.70
site-id 100
organization-name Chickenhawk
vbond 10.1.1.10
interface GigabitEthernet1
ip address 10.1.1.70 255.255.255.0
no shutdown
interface Tunnel1
ip unnumbered GigabitEthernet1
tunnel source GigabitEthernet1
tunnel mode sdwan

Now we need to set color on the interface:

sdwan
interface GigabitEthernet1
tunnel-interface
color custom3
encapsulation ipsec
allow-service sshd
allow-service all
exit
commit

Copy the ROOTCA.pem to each 8000v-1, 8000v-2, 8000v-3, 8000v-4,

copy scp://admin@10.1.1.10:/ROOTCA.pem ROOTCA.pem

Now install the certificate:

request platform software sdwan root-cert-chain install bootflash:ROOTCA.pem
commit

Now check that it is installed for each 8000v-1, 8000v-2, 8000v-3, 8000v-4,

show sdwan certificate root-ca-cert

Open the Cisco Catalyst SD-WAN Manager GUI. Go to Configuration > Devices > WAN Edges which brings to this page. Click on “Upload WAN Edge List”.
Upload the .viptela file from earlier:

Next

Remember to change the Hostname and System-IP at the Add and Review page:

After this is done the bootstrap file is created, go to Configuration > Devices > WAN Edges. Pick the device you would like to onboard. On the action column, there is three dots (…), click on it and choose “Generate Bootstrap Configuration”

Now take note of the output of the file once you’ve generated the bootstrap. Copy the uuid and otp somewhere like notepad :

now use the following command to onboard:

request platform software sdwan vedge_cloud activate chassis-number <uuid/chassis number> token <token/opt>.

Lets pause and take a moment to see where we are at, we have all 3 controllers and 4 routers onboarded showing green health:

Leave a comment

Trending