~smoser/curtin/trunk.bzr-dead

« back to all changes in this revision

Viewing changes to examples/network-ipv6-bond-vlan.yaml

  • Committer: Scott Moser
  • Date: 2017-12-20 17:33:03 UTC
  • Revision ID: smoser@ubuntu.com-20171220173303-29gha5qb8wpqrd40
README: Mention move of revision control to git.

curtin development has moved its revision control to git.
It is available at
  https://code.launchpad.net/curtin

Clone with
  git clone https://git.launchpad.net/curtin
or
  git clone git+ssh://git.launchpad.net/curtin

For more information see
  http://curtin.readthedocs.io/en/latest/topics/development.html

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
network:
2
 
  version: 1
3
 
  config:
4
 
    - name: interface0
5
 
      type: physical
6
 
      mac_address: bc:76:4e:06:96:b3
7
 
    - name: interface1
8
 
      type: physical
9
 
      mac_address: bc:76:4e:04:88:41
10
 
    - type: bond
11
 
      bond_interfaces:
12
 
        - interface0
13
 
        - interface1
14
 
      name: bond0
15
 
      params:
16
 
        bond_miimon: 100
17
 
        bond_mode: 802.3ad
18
 
        bond_xmit_hash_policy: layer3+4
19
 
    - type: vlan
20
 
      name: bond0.108
21
 
      vlan_id: '108'
22
 
      vlan_link: bond0
23
 
      subnets:
24
 
        - type: static
25
 
          address: 65.61.151.38
26
 
          netmask: 255.255.255.252
27
 
          routes:
28
 
            - gateway: 65.61.151.37
29
 
              netmask: 0.0.0.0
30
 
              network: 0.0.0.0
31
 
        - type: static
32
 
          address: 2001:4800:78ff:1b:be76:4eff:fe06:96b3
33
 
          netmask: 'ffff:ffff:ffff:ffff::'
34
 
          routes:
35
 
            - gateway: 2001:4800:78ff:1b::1
36
 
              netmask: '::'
37
 
              network: '::'
38
 
    - type: vlan
39
 
      name: bond0.208
40
 
      vlan_id: '208'
41
 
      vlan_link: bond0
42
 
      subnets:
43
 
        - address: 10.184.225.122
44
 
          netmask: 255.255.255.252
45
 
          type: static
46
 
          routes:
47
 
            - gateway: 10.184.225.121
48
 
              netmask: 255.240.0.0
49
 
              network: 10.176.0.0
50
 
            - gateway: 10.184.225.121
51
 
              netmask: 255.240.0.0
52
 
              network: 10.208.0.0
53
 
    - type: nameserver
54
 
      address: 72.3.128.240
55
 
    - type: nameserver
56
 
      address: 72.3.128.241