FireBrick 2700 Configuration: Difference between revisions
Appearance
Content deleted Content added
CrazyTeeka (talk | contribs) mNo edit summary |
CrazyTeeka (talk | contribs) mNo edit summary |
||
| Line 157: | Line 157: | ||
<syntaxhighlight> |
<syntaxhighlight> |
||
<http/> |
<http/> |
||
</syntaxhighlight> |
|||
Enable HTTP server, allow inbound to HTTP Server from a single IPv4 address: |
|||
<syntaxhighlight> |
|||
<http allow="1.2.3.4" local-only="false"/> |
|||
</syntaxhighlight> |
|||
Enable HTTP server, allow inbound to HTTP Server from a block of IPv4s: |
|||
<syntaxhighlight> |
|||
<http allow="1.2.3.4-100" local-only="false"/> |
|||
</syntaxhighlight> |
|||
Enable HTTP server, allow inbound to HTTP Server from a /29 block of IPv4s: |
|||
<syntaxhighlight> |
|||
<http allow="1.2.3.4/29" local-only="false"/> |
|||
</syntaxhighlight> |
|||
Enable HTTP server, allow inbound to HTTP Server from a single IPv6 address: |
|||
<syntaxhighlight> |
|||
<http allow="2001:8b0:119c:acf2::1" local-only="false"/> |
|||
</syntaxhighlight> |
|||
Enable HTTP server, allow inbound to HTTP Server from a /48 block of IPv6s: |
|||
<syntaxhighlight> |
|||
<http allow="2001:8b0:119c::/48" local-only="false"/> |
|||
</syntaxhighlight> |
|||
Enable HTTP server, allow inbound to HTTP Server from a /64 block of IPv6s: |
|||
<syntaxhighlight> |
|||
<http allow="2001:8b0:119c:acf2::/64" local-only="false"/> |
|||
</syntaxhighlight> |
</syntaxhighlight> |
||