summaryrefslogtreecommitdiff
path: root/roles/colo-router/files/router-interfaces
blob: f2b6ea16130c9ea6c8f2d1676c08ac78a9541f78 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# DO NOT EDIT: MANAGED BY ANSIBLE

# The loopback network interface
auto lo
iface lo inet loopback

# internet connection through OnRamp
auto em2
iface em2 inet static
  address 64.28.108.36
  netmask 255.255.255.0
  gateway 64.28.108.1
  dns-nameservers 207.200.0.230 207.200.0.25

auto em2:0
iface em2:0 inet static
  name public ip for r1-a1
  address 64.28.108.83
  netmask 255.255.255.0
  gateway 64.28.108.1

auto em2:1
iface em2:1 inet static
  name public ip for r1-a2
  address 64.28.108.84
  netmask 255.255.255.0
  gateway 64.28.108.1

auto em2:2
iface em2:2 inet static
  name public ip for r1-a3
  address 64.28.108.85
  netmask 255.255.255.0
  gateway 64.28.108.1

auto em2:3
iface em2:3 inet static
  name public ip for r1-a21/git-atx
  address 64.28.108.189
  netmask 255.255.255.0
  gateway 64.28.108.1


# vlan 10
auto em1.10
iface em1.10 inet static
  address 10.10.0.1
  netmask 255.255.0.0
  vlan_raw_device em1

# vlan 100
auto em1.100
iface em1.100 inet static
  address 10.100.0.1
  netmask 255.255.0.0
  vlan_raw_device em1

# vlan 20
auto em1.20
iface em1.20 inet static
  address 10.20.0.1
  netmask 255.255.0.0
  vlan_raw_device em1

# vlan 30
auto em1.30
iface em1.30 inet static
  address 10.30.0.1
  netmask 255.255.0.0
  vlan_raw_device em1

# vlan 64 (for r1-a1, r1-a2, and r1-a3)
auto em1.64
iface em1.64 inet static
  address 10.64.0.1
  netmask 255.255.0.0
  vlan_raw_device em1