diff --git a/doc/img/ip-address-example-ipv4-dhcp.svg b/doc/img/ip-address-example-ipv4-dhcp.svg
new file mode 100644
index 00000000..37abee06
--- /dev/null
+++ b/doc/img/ip-address-example-ipv4-dhcp.svg
@@ -0,0 +1,566 @@
+
+
diff --git a/doc/img/ip-address-example-ipv4-static.svg b/doc/img/ip-address-example-ipv4-static.svg
new file mode 100644
index 00000000..ebbf00af
--- /dev/null
+++ b/doc/img/ip-address-example-ipv4-static.svg
@@ -0,0 +1,294 @@
+
+
diff --git a/doc/img/ip-address-example-ipv6-auto-global.svg b/doc/img/ip-address-example-ipv6-auto-global.svg
new file mode 100644
index 00000000..41de4b87
--- /dev/null
+++ b/doc/img/ip-address-example-ipv6-auto-global.svg
@@ -0,0 +1,507 @@
+
+
diff --git a/doc/img/ip-address-example-ipv6-static.svg b/doc/img/ip-address-example-ipv6-static.svg
new file mode 100644
index 00000000..af05cd24
--- /dev/null
+++ b/doc/img/ip-address-example-ipv6-static.svg
@@ -0,0 +1,338 @@
+
+
diff --git a/doc/img/ip-address-example-switch.svg b/doc/img/ip-address-example-switch.svg
new file mode 100644
index 00000000..2de027f7
--- /dev/null
+++ b/doc/img/ip-address-example-switch.svg
@@ -0,0 +1,478 @@
+
+
diff --git a/doc/img/ip-iface-examples.svg b/doc/img/ip-iface-examples.svg
new file mode 100644
index 00000000..c72f5f04
--- /dev/null
+++ b/doc/img/ip-iface-examples.svg
@@ -0,0 +1,1381 @@
+
+
diff --git a/doc/testing-log.dot.svg b/doc/img/testing-log.dot.svg
similarity index 100%
rename from doc/testing-log.dot.svg
rename to doc/img/testing-log.dot.svg
diff --git a/doc/testing-overview.svg b/doc/img/testing-overview.svg
similarity index 100%
rename from doc/testing-overview.svg
rename to doc/img/testing-overview.svg
diff --git a/doc/testing-phy.dot.svg b/doc/img/testing-phy.dot.svg
similarity index 100%
rename from doc/testing-phy.dot.svg
rename to doc/img/testing-phy.dot.svg
diff --git a/doc/networking.md b/doc/networking.md
index 2d17a191..ee4b91da 100644
--- a/doc/networking.md
+++ b/doc/networking.md
@@ -5,7 +5,7 @@

| **Type** | **Yang Model** | **Description** |
-|----------|-------------------|---------------------------------------------------------------|
+| -------- | ----------------- | ------------------------------------------------------------- |
| bridge | infix-if-bridge | SW implementation of an IEEE 802.1Q bridge |
| ip | ietf-ip, infix-ip | IP address to the subordinate interface |
| vlan | ietf-vlan-encap | Capture all traffic belonging to a specific 802.1Q VID |
@@ -14,26 +14,238 @@
| eth | ietf-interfaces | Physical Ethernet device/port |
| veth | infix-if-veth | Virtual Ethernet pair, typically one end is in a container |
-[^1]: Please note, link aggregates are not yet supported in Infix.
+## Data Plane
-## Dataplane
-
-The blocks you choose, and how you connect them, defines your dataplane.
-Here we see an example of how to bridge a virtual port with a physical
-LAN.
+The blocks you ctose, and how you connect them, defines your data plane. Here we see an example of how to bridge a virtual port with a physical LAN.

-Depending on the (optional) VLAN filtering of the bridge, the container
-may have full or limited connectivity with outside ports, as well as the
-internal CPU.
+Depending on the (optional) VLAN filtering of the bridge, the container may have full or limited connectivity with outside ports, as well as the internal CPU.
-In fact the virtual port connected to the bridge can be member of
-several VLANs, with each VLAN being an interface with an IP address
-inside the container.
+In fact the virtual port connected to the bridge can be member of several VLANs, with each VLAN being an interface with an IP address inside the container.
-Thanks to Linux, and technologies like switchdev that allow you to split
-a switching fabric into unique (isolated) ports, the full separation and
-virtualization of all Ethernet layer properties are possible to share
-with a container. Meaning, all the building blocks used on the left
-hand side can also be used freely on the right hand side as well.
+Thanks to Linux, and technologies like switchdev, that allow you to split a switching fabric into unique (isolated) ports, the full separation and virtualization of all Ethernet layer properties are possible to share with a container. Meaning, all the building blocks used on the left hand side can also be used freely on the right hand side as well.
+
+### Bridging
+
+This is the most central part of the system. A bridge is a switch, and a switch is a bridge. In Linux, setting up a bridge with ports connected to physical switch fabric, means you manage the actual switch fabric!
+
+In Infix ports are by default not switch ports, unless the customer specific factory config sets it up this way. To enable switching between ports you create a bridge and then add ports to that bridge. That's it.
+
+```
+admin@example:/> configure
+admin@example:/config/> edit interfaces interface br0
+admin@example:/config/interfaces/interface/br0/> up
+admin@example:/config/interfaces/> set interface eth0 bridge-port bridge br0
+admin@example:/config/interfaces/> set interface eth1 bridge-port bridge br0
+admin@example:/config/interfaces/> leave
+```
+
+Here we add two ports to bridge `br0`: `eth0` and `eth1`.
+
+> **Note:** Infix has many built-in helpers controlled by convention. E.g., if you name your bridge `brN`, where `N` is a number, Infix will set the interface type automatically for you, and unlock all bridge features for you.
+
+#### VLAN Filtering Bridge
+
+By default bridges in Linux do not filter based on VLAN tags. It can be enabled in Infix when creating a bridge by adding a port to a VLAN as a tagged or untagged member:
+
+```
+admin@example:/config/> edit interfaces interface br0
+admin@example:/config/interfaces/interface/br0/> up
+admin@example:/config/interfaces/> set interface eth0 bridge-port bridge br0
+admin@example:/config/interfaces/> set interface eth1 bridge-port bridge br0
+admin@example:/config/interfaces/> edit interface br0
+admin@example:/config/interfaces/interface/br0/> set bridge vlans vlan 10 untagged eth0
+admin@example:/config/interfaces/interface/br0/> set bridge vlans vlan 20 untagged eth1
+```
+
+This sets `eth0` as an untagged member of VLAN 10 and `eth1` as an
+untagged member of VLAN 20. Switching between these ports is thus
+prohibited.
+
+### VLAN Interfaces
+
+Creating a VLAN can be done in many ways. This section assumes VLAN interfaces created atop another Linux interface. E.g., the VLAN interfaces created on top of the bridge in the picture above.
+
+A VLAN interface is basically a filtering abstraction. When you run `tcpdump` on a VLAN interface you will only see the frames matching the VLAN ID of the interface, compared to *all* the VLAN IDs if you run `tcpdump` on the parent interface.
+
+```
+admin@example:/> configure
+admin@example:/config/> edit interfaces interface eth0.20
+admin@example:/config/interfaces/interface/eth0.20/> set encapsulation dot1q-vlan outer-tag tag-type c-vlan vlan-id 20
+admin@example:/config/interfaces/interface/eth0.20/> set parent-interface eth0
+admin@example:/config/interfaces/interface/eth0.20/> leave
+```
+
+> **Note:** If you name your VLAN interface `foo0.N`, where `N` is a number, Infix will set the interface type automatically for you.
+
+## Management Plane
+
+This section details IP Addresses And Other Per-Interface IP settings.
+
+Infix support several network interface types, each can be assigned one or more IP addresses, both IPv4 and IPv6 are supported.
+
+
+
+### IPv4 Address Assignment
+
+Multiple address assignment methods are available:
+
+| **Type** | **Yang Model** | **Description** |
+|:---------- |:----------------- |:-------------------------------------------------------------- |
+| static | ietf-ip | Static assignment of IPv4 address, e.g., *10.0.1.1/24* |
+| link-local | infix-ip | Auto-assignment of IPv4 address in 169.254.x.x/16 range |
+| dhcp | infix-dhcp-client | Assignment of IPv4 address by DHCP server, e.g., *10.0.1.1/24* |
+
+DHCP address method is only available for *LAN* interfaces (ethernet, virtual ethernet (veth), bridge, etc.)
+
+#### Examples
+
+
+
+ root@example:/> show interfaces
+ INTERFACE STATE PROTOCOL/ADDRESS SOURCE
+ lo up 00:00:00:00:00:00 unknown
+ 127.0.0.1/8
+
+ eth0 up 02:00:00:00:00:00 unknown
+ root@example:/>
+
+##### Static IP and link-local IP addresses
+
+
+
+ root@example:/> configure
+ root@example:/config/> edit interfaces interface eth0 ipv4
+ root@example:/config/interfaces/interface/eth0/ipv4/> set address 10.0.1.1 prefix-length 24
+ root@example:/config/interfaces/interface/eth0/ipv4/> set autoconf enabled true
+ root@example:/config/interfaces/interface/eth0/ipv4/> leave
+ root@example:/> show interfaces
+ INTERFACE STATE PROTOCOL/ADDRESS SOURCE
+ lo up 00:00:00:00:00:00 unknown
+ 127.0.0.1/8
+
+ eth0 up 02:00:00:00:00:00 unknown
+ 169.254.1.3/16
+ 10.0.1.1/24
+
+ root@example:/>
+
+##### Use of DHCP for address assignment
+
+
+
+ root@example:/> configure
+ root@example:/config/> edit dhcp-client
+ root@example:/config/dhcp-client/> set client-if eth0
+ root@example:/config/dhcp-client/> set enabled true
+ root@example:/config/dhcp-client/> leave
+ root@example:/> show interfaces
+ INTERFACE STATE PROTOCOL/ADDRESS SOURCE
+ lo up 00:00:00:00:00:00 unknown
+ 127.0.0.1/8
+
+ eth0 up 02:00:00:00:00:00 unknown
+ 10.1.2.100/24
+
+ root@example:/>
+
+### IPv6 Address Assignment
+
+Multiple address assignment methods are available:
+
+| **Type** | **Yang Model** | **Description** |
+|:---------------- |:-------------- |:------------------------------------------------------------------------------------------------------------------------------------------------- |
+| static | ietf-ip | Static assignment of IPv6 address, e.g., *2001:db8:0:1::1/64* |
+| link-local | ietf-ip[^2] | (RFC4862) Auto-configured link-local IPv6 address (*fe80::0* prefix + interface identifier, e.g., *fe80::ccd2:82ff:fe52:728b/64*) |
+| global auto-conf | ietf-ip | (RFC4862) Auto-configured (stateless) global IPv6 address (prefix from router + interface identifier, e.g., *2001:db8:0:1:ccd2:82ff:fe52:728b/64* |
+
+#### Examples
+
+
+
+ root@example:/> show ip
+ 1: lo: mtu 65536 qdisc noqueue state UP group iface qlen 1000
+ link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
+ inet 127.0.0.1/8 scope host lo
+ valid_lft forever preferred_lft forever
+ inet6 ::1/128 scope host
+ valid_lft forever preferred_lft forever
+ 2: eth0: mtu 1500 qdisc pfifo_fast state UP group default qlen 1000
+ link/ether 02:00:00:00:00:00 brd ff:ff:ff:ff:ff:ff
+ inet6 fe80::ff:fe00:0/64 scope link
+ valid_lft forever preferred_lft forever
+ root@example:/>
+
+##### Disabling IPv6 link-local address(es)
+
+The only way to disable IPv6 link-local addresses is by disabling IPv6 on the interface.
+
+```(disabling
+root@example:/> configure
+root@example:/config/> edit interfaces interface eth0 ipv6
+root@example:/config/interfaces/interface/eth0/ipv6/> set enabled false
+root@example:/config/interfaces/interface/eth0/ipv6/> leave
+root@example:/> show ip
+1: lo: mtu 65536 qdisc noqueue state UP group iface qlen 1000
+ link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
+ inet 127.0.0.1/8 scope host lo
+ valid_lft forever preferred_lft forever
+ inet6 ::1/128 scope host
+ valid_lft forever preferred_lft forever
+2: eth0: mtu 1500 qdisc pfifo_fast state UP group default qlen 1000
+ link/ether 02:00:00:00:00:00 brd ff:ff:ff:ff:ff:ff
+root@example:/>
+```
+
+##### Static IPv6 address
+
+
+
+ root@example:/> configure
+ root@example:/config/> edit interfaces interface eth0 ipv6
+ root@example:/config/interfaces/interface/eth0/ipv6/> set address 2001:db8::1 prefix-length 64
+ root@example:/config/interfaces/interface/eth0/ipv6/> leave
+ root@example:/> show ip
+ 1: lo: mtu 65536 qdisc noqueue state UP group iface qlen 1000
+ link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
+ inet 127.0.0.1/8 scope host lo
+ valid_lft forever preferred_lft forever
+ inet6 ::1/128 scope host
+ valid_lft forever preferred_lft forever
+ 2: eth0: mtu 1500 qdisc pfifo_fast state UP group default qlen 1000
+ link/ether 02:00:00:00:00:00 brd ff:ff:ff:ff:ff:ff
+ inet6 2001:db8::1/64 scope global
+ valid_lft forever preferred_lft forever
+ inet6 fe80::ff:fe00:0/64 scope link
+ valid_lft forever preferred_lft forever
+ root@example:/>
+
+##### Stateless Autoconfiguration of Global IPv6 Address
+
+
+
+Concatenation of prefix advertised by router (here 2001:db8:0:1::0/64)
+and interface identifier.
+
+ root@example:/> configure
+ root@example:/config/> edit interfaces interface eth0 ipv6
+ root@example:/config/interfaces/interface/eth0/ipv6/> set address 2001:db8::1 prefix-length 64
+ root@example:/config/interfaces/interface/eth0/ipv6/> leave
+ root@example:/> show ip
+ 1: lo: mtu 65536 qdisc noqueue state UP group iface qlen 1000
+ link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
+ inet 127.0.0.1/8 scope host lo
+ valid_lft forever preferred_lft forever
+ inet6 ::1/128 scope host
+ valid_lft forever preferred_lft forever
+ 2: eth0: mtu 1500 qdisc pfifo_fast state UP group default qlen 1000
+ link/ether 02:00:00:00:00:00 brd ff:ff:ff:ff:ff:ff
+ inet6 2001:db8:0:1:0:ff:fe00:0/64 scope global dynamic mngtmpaddr
+ valid_lft 86398sec preferred_lft 14398sec
+ inet6 fe80::ff:fe00:0/64 scope link
+ valid_lft forever preferred_lft forever
+ root@example:/>
+
+[^1]: Please note, link aggregates are not yet supported in Infix.
+Link-local IPv6 addresses are implicitly enabled when enabling IPv6. IPv6 can be enabled/disabled per interface in *ietf-ip* YANG model.
diff --git a/doc/testing.md b/doc/testing.md
index 760f8c5a..839d8d03 100644
--- a/doc/testing.md
+++ b/doc/testing.md
@@ -43,7 +43,7 @@ Tenets
Architectural Overview
----------------------
-
+
The test system is made up of several independent components, which
are typically used in concert to run a full test suite.
@@ -140,7 +140,7 @@ DHCP server, and the other two as DHCP clients - with all three having
a management connection to the host PC running the test. In other
words, the test requires a _logical_ topology like the one below.
-
+
```dot
graph "dhcp-client-server" {
@@ -187,7 +187,7 @@ degrees), we can deploy well-known algorithms to find such subgraphs.
Continuing our example, let's say we want to run our DHCP test on the
_physical_ topology below.
-
+
```dot
graph "quad-ring" {
diff --git a/src/confd/confd-bootstrap.sh b/src/confd/confd-bootstrap.sh
index 2fadf71c..30964169 100755
--- a/src/confd/confd-bootstrap.sh
+++ b/src/confd/confd-bootstrap.sh
@@ -76,7 +76,7 @@ sysrepoctl -s $SEARCH \
-i ieee802-dot1q-types@2022-10-29.yang -g wheel -p 0660 \
-i ietf-if-vlan-encapsulation@2023-01-26.yang \
-g wheel -p 0660 \
- -i infix-ip@2023-04-24.yang -g wheel -p 0660 \
+ -i infix-ip@2023-09-14.yang -g wheel -p 0660 \
-i infix-if-type@2023-08-21.yang -g wheel -p 0660 \
-i infix-interfaces@2023-09-19.yang -g wheel -p 0660 \
-e vlan-filtering \
diff --git a/src/confd/yang/infix-interfaces@2023-09-19.yang b/src/confd/yang/infix-interfaces@2023-09-19.yang
index 6caf46d4..99c55ac4 100644
--- a/src/confd/yang/infix-interfaces@2023-09-19.yang
+++ b/src/confd/yang/infix-interfaces@2023-09-19.yang
@@ -59,5 +59,6 @@ module infix-interfaces {
deviation "/if:interfaces-state" {
deviate not-supported;
+ description "Deprecated";
}
}
diff --git a/src/confd/yang/infix-ip@2023-04-24.yang b/src/confd/yang/infix-ip@2023-09-14.yang
similarity index 64%
rename from src/confd/yang/infix-ip@2023-04-24.yang
rename to src/confd/yang/infix-ip@2023-09-14.yang
index 663d8904..2cbd816b 100644
--- a/src/confd/yang/infix-ip@2023-04-24.yang
+++ b/src/confd/yang/infix-ip@2023-09-14.yang
@@ -19,6 +19,11 @@ module infix-ip {
description
"This module augments ietf-ip with an IPv4 link-local autoconf";
+ revision 2023-09-14 {
+ description
+ "Added deviations for unsupported parts of ietf-ip.";
+ }
+
revision 2023-04-24 {
description
"Initial revision.";
@@ -44,4 +49,20 @@ module infix-ip {
}
}
}
+
+ deviation "/if:interfaces/if:interface/ip:ipv4/ip:address/ip:subnet/ip:netmask" {
+ deviate not-supported;
+ }
+
+ deviation "/if:interfaces/if:interface/ip:ipv4/ip:neighbor" {
+ deviate not-supported;
+ }
+
+ deviation "/if:interfaces/if:interface/ip:ipv6/ip:address/ip:status" {
+ deviate not-supported;
+ }
+
+ deviation "/if:interfaces/if:interface/ip:ipv6/ip:neighbor" {
+ deviate not-supported;
+ }
}