Automation, Orchestration & DevOps > Class 1: Programmability BIG-IP Rest Structure and Concepts Documentation! > Module 1: Imperative Automation with the BIG-IP and iControl Rest Source | Edit on
Lab 1.4: Basic Network Connectivity¶
This lab will focus on the configuration of the following items:
- L1-3 Networking
- Physical Interface Settings
- L2 Connectivity (VLAN, VXLAN, etc.)
- L3 Connectivity (Self IPs, Routing, etc.)
We will specifically cover the items in BOLD above in the following labs. It should be noted that many permutations of the Device Onboarding process exist due to the nature of different organizations. This class is designed to teach enough information so that you can then apply the knowledge learned and help articulate and/or deliver a specific solution for your environment.
The following table and diagram lists the L2-3 network information used to configure connectivity for BIG-IP A:
Type | Name | Details |
---|---|---|
VLAN | External | Interface: 1.1 Tag: 10 |
VLAN | Internal | Interface: 1.2 Tag: 20 |
Self IP | Self-External | Address: 10.1.10.7/24 VLAN: External |
Self IP | Self-Internal | Address: 10.1.20.7/24 VLAN: Internal |
Route | Default | Network: 0.0.0.0/0 GW: 10.1.10.1 |
Task 1 - Create VLANs¶
Note
This lab shows how to configure VLAN tags, but does not deploy tagged interfaces. To use tagged interfaces, the tagged
attribute needs to have the value true
.
Perform the following steps to configure the VLAN objects/resources:
Expand the
Lab 1.4 - Basic Network Connectivity
folder in the Postman collection.Click the
Step 1: Create a VLAN
request in the folder. Click Body and examine the JSON request body; the values for creating the Internal VLAN have already been populated.Click the Send button to create the VLAN
Repeat Step 1. However, this time, modify the JSON body to create the External VLAN using the parameters shown in the table above. In order to do so you can replace the following:
name
:Internal
>External
tag
:20
>10
interfaces
:1.2
>1.1
Click the
Step 2: Get VLANs
request in the folder. Click the Send button toGET
the VLAN collection. Examine the response to make sure both VLANs have been created.
Task 2 - Create Self IPs¶
Perform the following steps to configure the Self IP objects/resources:
Click the
Step 3: Create Internal Self IP
request in the folder. Click Body and examine the JSON body; the values for creating the Self-Internal Self IP have already been populated.Warning
The JSON body sets the VLAN to
/Common/External
on purpose. You will modify this value in the steps below. Please do not change the value.Click the Send button to create the Self IP.
Click the
Step 4: Create External Self IP
request in the folder and click Send.Click the
Step 5: Get Self-Internal Self IP Attributes
request in the folder and click the Send button. Examine the VLAN settings of the Resource as noted above the Self IP has been assigned to the wrong VLAN (intentionally).Note
Postman can check the responses for specific values to verify if the result of a request is what it is expected to be. The Test Results for this request will show a failure for the
[Check Value] vlan == /Common/Internal
value. This is intentional, and you should continue to the next section.
Task 3 - Modify Existing Self IP Resource¶
In order to modify an existing object via the REST API, the URI path has to be changed. In the previous examples, we used a POST
to create Resources under a Collection. Therefore, the URI used was that of the Collection itself. If you wish to update/modify a Resource, you must refer to the Resource directly.
For example, the Collection URI for Self IPs is /mgmt/tm/net/self
.
The Resource URI for the Self-Internal
Self IP is /mgmt/tm/net/self/~Common~Self-Internal
. Notice that the BIG-IP
partition and object name has been added to the Collection URI for the Resource URI.
On the open
Step 5: Get Self-Internal Self IP Attributes
request change the request method fromGET
toPATCH
. ThePATCH
method is used to modify the attributes of an existing Resource.Copy
(Ctrl + C)
the entire JSON RESPONSE from the previousGET
request.Paste
(Ctrl + V)
the text into JSON REQUEST body:Note
Be sure to highlight any existing text and replace it while pasting.
In the JSON body change the
vlan
attribute to/Common/Internal
and clickSend
:Click the
Step 6: Get Self IPs
item in the collection. Click theSend
button to GET the Self IP collection. Examine the response to make sure both Self IPs have been created and associated with the appropriate vlan.
Task 4 - Create Routes¶
Perform the following steps to configure the Route object/resource:
- Before creating the route, we double-check the content of the routing table. Click the
Step 7: Get Routes
item in the collection. Click theSend
button toGET
the routes collection. Examine the response to make sure there is no route. - Click the
Step 8: Create a Route
item in the collection. Click Body and examine the JSON body; the values for creating the default route have already been populated. - Click the
Send
button to create the route. - Click the
Step 9: Get Routes
item in the collection again. Click theSend
button toGET
the routes collection. Examine the response to make sure the route has been created.
Perform the following steps to save the system configuration before licensing the device:
- Click the
Step 10: Save config
item in the collection. Click theSend
button to save the BIG-IP configuration.
Warning
Configuration changes made through the iControl REST API are not saved by default. A configuration save prior to a reload or reboot of the system is required.