24 lines
832 B
Plaintext
24 lines
832 B
Plaintext
@model List<AS1024.CommunityDocumentationPage.Models.Result>
|
|
@{
|
|
ViewData["Title"] = "BGP Communities";
|
|
}
|
|
|
|
<p>This site contains BGP communities for AS1024. Please note that these communities are subject to change at a moment's notice. We do not strip communities on received routes or on routes sent to peers and upstreams, but we cannot guarantee that the communities will be preserved by the upstream or peers. If you have any questions or need support, please reach out to noc@12393239.xyz.</p>
|
|
|
|
|
|
<p>The communities are as follows:</p>
|
|
|
|
<table class="table">
|
|
<thead>
|
|
<tr>
|
|
<th>Community Tag</th>
|
|
<th>Description</th>
|
|
</tr>
|
|
</thead>
|
|
@foreach (var item in Model) {
|
|
<tr>
|
|
<td>@item.Name</td>
|
|
<td>@item.Description</td>
|
|
</tr>
|
|
}
|
|
</table> |