This repository has been archived by the owner on Oct 11, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
ex4300-17.conf
78 lines (77 loc) · 1.46 KB
/
ex4300-17.conf
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
system {
domain-name poc-nl.jnpr.net;
name-server {
8.8.8.8;
8.8.4.4;
}
services {
ssh;
telnet;
netconf {
ssh;
}
}
login {
retry-options {
minimum-time 40;
}
}
}
interfaces {
ge-0/0/0 {
unit 0 {
description "ex4300-9";
family inet {
address 192.168.0.4/31;
}
}
}
ge-0/0/1 {
unit 0 {
description "ex4300-18";
family inet {
address 192.168.0.2/31;
}
}
}
}
protocols {
bgp {
group underlay {
import bgp-in;
export bgp-out;
type external;
local-as 110;
multipath multiple-as;
neighbor 192.168.0.5 {
peer-as 109;
}
neighbor 192.168.0.3 {
peer-as 104;
}
}
}
lldp {
interface "ge-0/0/0";
interface "ge-0/0/1";
}
}
routing-options {
router-id 192.179.0.73;
forwarding-table {
export bgp-ecmp;
}
}
policy-options {
policy-statement bgp-ecmp {
then {
load-balance per-packet;
}
}
policy-statement bgp-in {
then accept;
}
policy-statement bgp-out {
then accept;
}
}