Skip to content

Commit 1714cb9

Browse files
Merge pull request #298793 from sushantjrao/break-glass-setup
Update howto-enable-log-streaming.md
2 parents a00f173 + 06da4d1 commit 1714cb9

File tree

1 file changed

+25
-18
lines changed

1 file changed

+25
-18
lines changed

articles/operator-nexus/howto-enable-log-streaming.md

Lines changed: 25 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -57,21 +57,24 @@ az networkfabric networkmonitor create \
5757
--fabric "example-fabric" \
5858
--resource-name "example-network-monitor" \
5959
--bmp-configuration "{\
60+
scopeResourceId: '/subscriptions/xxxxx-xxxx-xxxx-xxxx-xxxxx/resourceGroups/example-rg/providers/Microsoft.ManagedNetworkFabric/networkFabrics/example-fabric',\
6061
stationConfigurationState: 'Enabled',\
61-
stationName: '<example-station>',\
62-
stationIp: '<example-ip>',\
63-
stationPort: <example-port>,\
62+
stationName: '',\
63+
stationIp: '',\
64+
stationPort: ,\
6465
stationConnectionMode: 'Active',\
66+
monitoredAddressFamilies: ['ipv4Unicast', 'ipv6Unicast', 'vpnIpv4', 'vpnIpv6'],\
67+
exportPolicy: 'Pre-Policy',\
6568
stationConnectionProperties: {\
6669
keepaliveIdleTime: 180,\
6770
probeInterval: 60,\
6871
probeCount: 3\
6972
}\
7073
}" \
7174
--monitored-networks "[\
72-
'<example-arm-reference-id-1>',\
73-
'<example-arm-reference-id-2>',\
74-
'<example-arm-reference-id-3>'\
75+
'l3isd-1-arm-reference-id',\
76+
'l3isd-2-arm-reference-id',\
77+
'/subscriptions/xxxxx-xxxx-xxxx-xxxx-xxxxx/resourceGroups/example-rg/providers/Microsoft.ManagedNetworkFabric/l3IsolationDomains/example-l3domain'\
7578
]"
7679
7780
```
@@ -82,18 +85,22 @@ az networkfabric networkmonitor create \
8285
Nexus generates the following configuration for BMP Station:
8386

8487
```output
85-
router bgp 65050
86-
neighbor <example-ip> peer group CE_PE_VPN
87-
no neighbor <example-ip> monitoring >>> disabling the bgp monitoring which is opted under NNI OptionBLayer3Configuration
88-
monitoring timestamp send-time
89-
monitoring station example-network-monitor
90-
update-source Vlan39
91-
connection address <example-ip> vrf INFRA-MGMT
92-
connection mode passive
93-
monitoring station BMP2
94-
update-source Vlan39
95-
connection address <example-ip> vrf INFRA-MGMT
96-
connection mode active port <example-port> >>> Example for BMP Monitoring station with connection mode active
88+
router bgp 65501
89+
neighbor CE_PE_VPN monitoring
90+
neighbor INFRA-MGMT monitoring
91+
monitoring received routes address-family ipv4 unicast
92+
monitoring received routes address-family ipv6 unicast
93+
monitoring received routes address-family vpn-ipv4
94+
monitoring received routes address-family vpn-ipv6
95+
bgp monitoring
96+
monitoring timestamp send-time
97+
monitoring station adp-nprd-euap-austxg5-fab-bmp
98+
update-source Vlan39
99+
connection address <example ip> vrf INFRA-MGMT
100+
connection mode active port <example port>
101+
connection keepalive 180 60 3
102+
export-policy received routes pre-policy
103+
!
97104
```
98105

99106
## How to Enable/Disable BMP log streaming under NNI

0 commit comments

Comments
 (0)