nmstate 2.2.60

Library for networking management in a declarative manner
Documentation
---
interfaces:
  - name: eth2
    type: ethernet
    state: up
    ipv4:
      address:
      - ip: 192.0.2.252
        prefix-length: 24
      dhcp: false
      enabled: true
    ipv6:
      address:
      - ip: 2001:db8:1::2
        prefix-length: 64
      dhcp: false
      enabled: true
      autoconf: false
routes:
  config:
  - destination: ::/0
    next-hop-address: 2001:db8:1::3
    next-hop-interface: eth1
    state: absent
  - destination: 0.0.0.0/0
    next-hop-address: 192.0.2.1
    next-hop-interface: eth1
    state: absent
  - destination: ::/0
    next-hop-address: 2001:db8:1::4
    next-hop-interface: eth2
  - destination: 0.0.0.0/0
    next-hop-address: 192.0.2.2
    next-hop-interface: eth2