You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/expressroute/expressroute-config-samples-routing.md
+26-6Lines changed: 26 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -171,8 +171,8 @@ Configure your router to advertise select prefixes to Microsoft by using the fol
171
171
policy-statement <Policy_Name> {
172
172
term 1 {
173
173
from protocol OSPF;
174
-
route-filter
175
-
<Prefix_to_be_advertised/Subnet_Mask> exact;
174
+
route-filter;
175
+
<Prefix_to_be_advertised/Subnet_Mask> exact;
176
176
then {
177
177
accept;
178
178
}
@@ -182,7 +182,7 @@ Configure your router to advertise select prefixes to Microsoft by using the fol
182
182
protocols {
183
183
bgp {
184
184
group <Group_Name> {
185
-
export <Policy_Name>
185
+
export <Policy_Name>;
186
186
peer-as 12076;
187
187
neighbor <IP#2_used_by_Azure>;
188
188
}
@@ -201,7 +201,7 @@ You can use route maps and prefix lists to filter prefixes propagated into your
201
201
policy-statement <MS_Prefixes_Inbound> {
202
202
term 1 {
203
203
from {
204
-
prefix-list MS_Prefixes;
204
+
prefix-list MS_Prefixes;
205
205
}
206
206
then {
207
207
accept;
@@ -212,8 +212,8 @@ You can use route maps and prefix lists to filter prefixes propagated into your
212
212
protocols {
213
213
bgp {
214
214
group <Group_Name> {
215
-
export <Policy_Name>
216
-
import <MS_Prefixes_Inbound>
215
+
export <Policy_Name>;
216
+
import <MS_Prefixes_Inbound>;
217
217
peer-as 12076;
218
218
neighbor <IP#2_used_by_Azure>;
219
219
}
@@ -236,6 +236,26 @@ Configure BFD under the protocol BGP section only.
236
236
}
237
237
}
238
238
239
+
### Configure MACSec
240
+
For MACSec configuration, Connectivity Association Key (CAK) and Connectivity Association Key Name (CKN) must match with configured values via PowerShell commands.
0 commit comments