Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 40 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,46 @@ interface *

## Extreme

We still have no suggestion for Extreme.
Verified by: Technical Team, Internet Association of Australia

Add to existing port ACL file:

```
entry permit_IX_v4 {
if match all {
source-address <Peering LAN Prefix IPv4> ;
destination-address <Peering LAN Prefix IPv4> ;
}
then {
permit ;
}
}
entry deny_IX_v4 {
if match all {
destination-address <Peering LAN Prefix IPv4> ;
}
then {
deny ;
}
}
entry permit_IX_v6 {
if match all {
source-address <Peering LAN Prefix IPv6> ;
destination-address <Peering LAN Prefix IPv6> ;
}
then {
permit ;
}
}
entry deny_IX_v6 {
if match all {
destination-address <Peering LAN Prefix IPv6> ;
}
then {
deny ;
}
}
```

## Juniper

Expand Down