bgp-on-extreme-summit5i.md
... ...
@@ -7,11 +7,18 @@ Looks like ExtremeWare doesn't support any tunneling mechanism in contrast to Ex
7 7
## Snipplet
8 8
This configuration was tested on latest EW of 7.8.4.1 patch1-r4 version. But it should work on most of older releases as well.
9 9
10
- enable ipforwarding
11
-
10
+ ## DN42 should go both in internal (for clients) and external VLANs
11
+ create vlan svlan
12
+ configure vlan svlan ipaddress 192.168.1.100/24
12 13
# Adding an alias
13 14
enable multinetting standard
14
- configure vlan ext add secondary-ip 172.23.150.2/24
15
+ configure vlan svlan add secondary-ip 172.23.150.2/24
16
+ ...
17
+ enable ipforwarding
18
+
19
+ configure vlan svlan add subvlan ext
20
+ ...
21
+ ##
15 22
16 23
# Adding route to a neighbor
17 24
configure iproute add 172.23.11.1/32 172.23.150.1
... ...
@@ -28,8 +35,8 @@ Now, if you're trying EBGP with your peer:
28 35
configure bgp add network 77.37.212.15/32
29 36
30 37
create bgp neighbor 172.23.11.1 remote-AS-number 64526
31
- # Point to a proper outgoing interface
32
- configure bgp neighbor 172.23.11.1 source-interface vlan ext
38
+ # Point to a proper outgoing interface, useless in case when Super VLAN is used
39
+ #configure bgp neighbor 172.23.11.1 source-interface vlan ext
33 40
34 41
enable bgp neighbor 172.23.11.1
35 42
... ...
@@ -52,20 +59,4 @@ After that ping and traceroute are your mates. It is worth to point switch to th
52 59
53 60
`configure dns-client add name-server 192.168.1.1`
54 61
55
-And use names.
56
-
57
-## Routing
58
-After you've made DN42 work at switch, you may provide access to switch's clients:
59
-
60
- # Assign 802.11Q tag
61
- configure vlan ext tag 100
62
- configure vlan ext add ports 2-16 tagged
63
-
64
-And on your client UNIX machine:
65
-
66
- # Assign matching tag
67
- ifconfig vlan0 vlan 100 vlandev en0
68
- ifconfig vlan0 inet 172.23.150.4/25
69
- route add 172.22.0.0/15 172.23.150.2
70
-
71
-**TO-DO**: Doing the same without 802.11Q.
... ...
\ No newline at end of file
0
+And use names.
... ...
\ No newline at end of file