Difference between revisions of "Network"
From Makers Local 256
m (→Logical Map: Trying to remember graphviz syntax) |
m (→Logical Map: Updated with gateway fleshed out, and started on zimbra and web) |
||
Line 9: | Line 9: | ||
==Logical Map== | ==Logical Map== | ||
<graphviz caption='Logical Map' alt='Logical Map' format='png'> | <graphviz caption='Logical Map' alt='Logical Map' format='png'> | ||
− | + | graph LogicalMap { | |
graph [rankdir=TB] | graph [rankdir=TB] | ||
− | + | node [shape="box"] | |
− | Gateway | + | { node [shape="oval"] |
− | } | + | "The Internet" "wired clients" "wireless clients" "vpn clients" |
− | " | + | } |
+ | "The Internet" -- gateway_eth0 | ||
+ | subgraph cluster_gateway { | ||
+ | label = "Gateway" | ||
+ | URL = "Network/Gateway" | ||
+ | gateway_eth0 [label="eth0\n74.95.48.249"] | ||
+ | gateway_eth1 [label="eth1\n10.56.0.1"] | ||
+ | gateway_eth2 [label="eth2\n10.56.1.1"] | ||
+ | gateway_eth3 [label="eth3\n10.56.2.1"] | ||
+ | gateway_tun0 [label="tun0\n10.56.3.1"] | ||
+ | } | ||
+ | gateway_eth2 -- "wired clients" | ||
+ | gateway_eth3 -- "wireless clients" | ||
+ | gateway_tun0 -- "vpn clients" | ||
+ | |||
+ | subgraph cluster_web { | ||
+ | label = "web" | ||
+ | URL = "Network/Web" | ||
+ | web_eth0 [shape="box", label="eth0\n10.56.0.3"] | ||
+ | } | ||
+ | gateway_eth1 -- web_eth0 [label="any:any->self:80\nany:any->self:443\nself:any->any:80\nself:any->any:443\nself:any->zimbra:25"] | ||
+ | |||
+ | subgraph cluster_zimbra { | ||
+ | label = "zimbra" | ||
+ | URL = "Network/Zimbra" | ||
+ | zimbra_eth0 [shape="box", label="eth0\n10.56.0.4"] | ||
+ | } | ||
+ | gateway_eth1 -- zimbra_eth0 [label="any:any->self:25\nself:any->any:25\nany:any->self:465\nweb:any->self:80"] | ||
} | } | ||
+ | |||
</graphviz> | </graphviz> | ||
==Physical Map== | ==Physical Map== |
Revision as of 18:06, 28 November 2009
This is still in planning stages
Goals
- Facilitate members' access to information easily for the member
- Keep maintenance simple
- Promote collaboration between members
- Prevent abuse of the network that would interfere with the above and any 3rd party legal agreements
Logical Map