@@ -42,7 +42,7 @@ To do so we'll need to configure BIG-IP first.
4242
4343 .. code-block :: bash
4444
45- ssh admin@10.1.1.5 tmsh create auth partition kubernetes
45+ ssh admin@10.1.1.4 tmsh create auth partition kubernetes
4646
4747 #. Install AS3 via the management console
4848
@@ -64,15 +64,15 @@ To do so we'll need to configure BIG-IP first.
6464
6565 .. code-block :: bash
6666
67- ssh admin@10.1.1.5 tmsh create net tunnels vxlan fl-vxlan { app-service none port 8472 flooding-type none }
67+ ssh admin@10.1.1.4 tmsh create net tunnels vxlan fl-vxlan { app-service none port 8472 flooding-type none }
6868
6969# . Create a vxlan tunnel.
7070
7171 - Browse to: :menuselection:` Network --> Tunnels --> Tunnel List`
7272 - Create a new tunnel called " **fl-tunnel**"
7373 - Set the Profile to the one previously created called " **fl-vxlan**"
7474 - set the Key = ** 1**
75- - Set the Local Address to ** 10.1.10.101 **
75+ - Set the Local Address to ** 10.1.1.4 **
7676 - Click ** Finished**
7777
7878 .. image:: ../images/create-fl-vxlan-tunnel.png
@@ -81,7 +81,7 @@ To do so we'll need to configure BIG-IP first.
8181
8282 .. code-block:: bash
8383
84- ssh admin@10.1.1.5 tmsh create net tunnels tunnel fl-tunnel { app-service none key 1 local-address 10.1.10.101 profile fl-vxlan }
84+ ssh admin@10.1.1.4 tmsh create net tunnels tunnel fl-tunnel { app-service none key 1 local-address 10.1.1.4 profile fl-vxlan }
8585
8686# . Create the vxlan tunnel self-ip
8787
@@ -111,7 +111,17 @@ To do so we'll need to configure BIG-IP first.
111111
112112 .. code-block:: bash
113113
114- ssh admin@10.1.1.5 tmsh create net self fl-vxlan-selfip { address 10.42.20.1/16 vlan fl-tunnel allow-service all }
114+ ssh admin@10.1.1.4 tmsh create net self fl-vxlan-selfip { address 10.42.20.1/16 vlan fl-tunnel allow-service all }
115+
116+ #. Create route to Flannel network
117+
118+ - Browse to: :menuselection:`Network --> Routes`
119+ - Create a new route called "**flannel_route**"
120+ - Set the Destination to "**10.244.0.0**"
121+ - Set the Netmask to "**255.255.0.0**"
122+ - Set the Resource to "Use VLAN / Tunnle"
123+ - Set the VLAN / Tunnel to "**fl-tunnel**" (*Created earlier*)
124+ - Click **Finished**
115125
116126CIS Deployment
117127--------------
@@ -149,7 +159,7 @@ CIS Deployment
149159
150160 .. code-block:: bash
151161
152- ssh admin@10.1.1.5 tmsh show net tunnels tunnel fl-tunnel all-properties
162+ ssh admin@10.1.1.4 tmsh show net tunnels tunnel fl-tunnel all-properties
153163
154164 .. image:: ../images/get-fl-tunnel-mac-addr.png
155165
@@ -159,7 +169,7 @@ CIS Deployment
159169
160170 .. code-block:: bash
161171
162- ssh admin@10.1.1.5 tmsh show net tunnels tunnel fl-tunnel all-properties | grep MAC | cut -c 33-51
172+ ssh admin@10.1.1.4 tmsh show net tunnels tunnel fl-tunnel all-properties | grep MAC | cut -c 33-51
163173
164174#. In the Web Shell window (*command line of kube-master1*), edit the **bigip-node.yaml**
165175 file to change the highlighted MAC address with the MAC address copied from the previous step.
0 commit comments