diff options
| -rw-r--r-- | examples/tg15/streamstats/cubemap_maggie_detailed-20150403-1800.png | bin | 0 -> 136232 bytes | |||
| -rw-r--r-- | examples/tg15/streamstats/cubemap_maggie_detailed-20150404-1800.png | bin | 0 -> 130259 bytes | |||
| -rw-r--r-- | examples/tg15/streamstats/cubemap_maggie_detailed-20150405-0400.png | bin | 0 -> 73722 bytes | |||
| -rw-r--r-- | examples/tg15/streamstats/cubemap_seamus_detailed-20150403-1800.png | bin | 0 -> 133380 bytes | |||
| -rw-r--r-- | examples/tg15/streamstats/cubemap_seamus_detailed-20150404-1800.png | bin | 0 -> 132824 bytes | |||
| -rw-r--r-- | examples/tg15/streamstats/cubemap_seamus_detailed-20150405-0400.png | bin | 0 -> 75184 bytes | |||
| -rw-r--r-- | examples/tg15/weathermap.png | bin | 0 -> 229162 bytes | |||
| -rw-r--r-- | web/nms-public.gathering.org/tempkart.html | 10 | ||||
| -rw-r--r-- | web/nms.gathering.org/speedometer/Statistikk_bakgrunn_alternate-02.png | bin | 0 -> 115463 bytes | |||
| -rw-r--r-- | web/nms.gathering.org/speedometer/nms-tmp.js | 156 | ||||
| -rw-r--r-- | web/streamlib/stream/config.pm | 6 | ||||
| -rw-r--r-- | web/weathermap/tg15.conf | 325 | 
12 files changed, 494 insertions, 3 deletions
| diff --git a/examples/tg15/streamstats/cubemap_maggie_detailed-20150403-1800.png b/examples/tg15/streamstats/cubemap_maggie_detailed-20150403-1800.pngBinary files differ new file mode 100644 index 0000000..c6692f6 --- /dev/null +++ b/examples/tg15/streamstats/cubemap_maggie_detailed-20150403-1800.png diff --git a/examples/tg15/streamstats/cubemap_maggie_detailed-20150404-1800.png b/examples/tg15/streamstats/cubemap_maggie_detailed-20150404-1800.pngBinary files differ new file mode 100644 index 0000000..74bf31e --- /dev/null +++ b/examples/tg15/streamstats/cubemap_maggie_detailed-20150404-1800.png diff --git a/examples/tg15/streamstats/cubemap_maggie_detailed-20150405-0400.png b/examples/tg15/streamstats/cubemap_maggie_detailed-20150405-0400.pngBinary files differ new file mode 100644 index 0000000..b5ac7f8 --- /dev/null +++ b/examples/tg15/streamstats/cubemap_maggie_detailed-20150405-0400.png diff --git a/examples/tg15/streamstats/cubemap_seamus_detailed-20150403-1800.png b/examples/tg15/streamstats/cubemap_seamus_detailed-20150403-1800.pngBinary files differ new file mode 100644 index 0000000..829e9bf --- /dev/null +++ b/examples/tg15/streamstats/cubemap_seamus_detailed-20150403-1800.png diff --git a/examples/tg15/streamstats/cubemap_seamus_detailed-20150404-1800.png b/examples/tg15/streamstats/cubemap_seamus_detailed-20150404-1800.pngBinary files differ new file mode 100644 index 0000000..c326cd7 --- /dev/null +++ b/examples/tg15/streamstats/cubemap_seamus_detailed-20150404-1800.png diff --git a/examples/tg15/streamstats/cubemap_seamus_detailed-20150405-0400.png b/examples/tg15/streamstats/cubemap_seamus_detailed-20150405-0400.pngBinary files differ new file mode 100644 index 0000000..e407e39 --- /dev/null +++ b/examples/tg15/streamstats/cubemap_seamus_detailed-20150405-0400.png diff --git a/examples/tg15/weathermap.png b/examples/tg15/weathermap.pngBinary files differ new file mode 100644 index 0000000..42f8d65 --- /dev/null +++ b/examples/tg15/weathermap.png diff --git a/web/nms-public.gathering.org/tempkart.html b/web/nms-public.gathering.org/tempkart.html new file mode 100644 index 0000000..216d855 --- /dev/null +++ b/web/nms-public.gathering.org/tempkart.html @@ -0,0 +1,10 @@ +<html> +  <head> +    <title>DHCP-kart</title> +    <meta http-equiv="refresh" content="60"> +  </head> +  <body> + +    <p><img src="tempkart.png"  /></p> +  </body> +</html> diff --git a/web/nms.gathering.org/speedometer/Statistikk_bakgrunn_alternate-02.png b/web/nms.gathering.org/speedometer/Statistikk_bakgrunn_alternate-02.pngBinary files differ new file mode 100644 index 0000000..b4805cf --- /dev/null +++ b/web/nms.gathering.org/speedometer/Statistikk_bakgrunn_alternate-02.png diff --git a/web/nms.gathering.org/speedometer/nms-tmp.js b/web/nms.gathering.org/speedometer/nms-tmp.js new file mode 100644 index 0000000..b1a9859 --- /dev/null +++ b/web/nms.gathering.org/speedometer/nms-tmp.js @@ -0,0 +1,156 @@ +var nms = { +	debug: true, +}; + +var ports_now; +var ports_5m_ago; +var ports_1h_ago; +var bandwidth = 0; +var sw; +var infra; +// var full=false; + +/* +    Sets $ports_now and $ports_5m_ago - both variables' structure: +    obj( +        <host> -> <port> -> <properties>, +        <host> -> <port> -> <properties>, +        [...] +    ) +     +    Properties: +        ifhcinoctets (counter64) +        ifhcoutoctets (counter64) +        ifhighbandwidth (???) +        time (unix timestamp) +*/ +function fetch_switch_data(){ +    mode = $('#switch').attr('data-mode'); +	$.ajax({ +		type: "GET", +		url: "/port-state.pl", +		dataType: "text", +		success: function (data, textStatus, jqXHR) { +			var  switchdata = JSON.parse(data); +			ports_now = switchdata['switches']; +			var list = document.getElementById("switch-list"); +			if (list) { +			var v = list.value; +			var arry = new Array(); +			for (x in switchdata) { +				arry.push(x); +			} +			arry.sort(); +			list.options.length = 0; +			for (x in arry) { +				list.add(new Option(arry[x])); +			} +			if (v) +				list.value = v; +			} +		} +	}); +	$.ajax({ +		type: "GET", +		url: "/port-state.pl?time=5m", +		dataType: "text", +		success: function (data, textStatus, jqXHR) { +			var  switchdata = JSON.parse(data); +			ports_5m_ago = switchdata['switches']; +		} +	}) +	// console.log(ports_now); +	 +	 +	$.ajax({ +		type: "GET", +		url: "/port-state.pl?time=1h", +		dataType: "text", +		success: function (data, textStatus, jqXHR) { +			var  switchdata = JSON.parse(data); +			ports_1h_ago = switchdata['switches']; +		} +	}) +} + +/* +    Get bandwidth average for last hour, in bytes +    mode: either "tot_agg" or "edge_ports" +    tot_agg gives total aggregation of all ports +    edge_ports gives aggregation on all client facing ports on EX2200 switches (not 100% accurate, missing a few clients directly connected on EX3300) +*/ +function get_bytes_avg_1h(mode){ +    var mode = $('#switch').attr('data-mode'); +    var bw_usage = 0; +    for (sw in ports_now) { +        for (port in ports_now[sw]["ports"]) { +         +			if (!ports_now[sw]["ports"][port]) { +				console.log('Error - should not happen (!ports_now[sw]["ports"][port])'); +				continue; +			} +			if (!ports_5m_ago[sw]["ports"][port]) { +			    console.log('Error - should not happen (!ports_5m_ago[sw]["ports"][port])'); +				continue; +			} +			 +	        var diff = parseInt(ports_now[sw]["ports"][port]["time"]) - parseInt(ports_1h_ago[sw]["ports"][port]["time"]); +	        var then = parseInt(ports_1h_ago[sw]["ports"][port]["ifhcinoctets"]); +	        var now =  parseInt(ports_now[sw]["ports"][port]["ifhcinoctets"]); +	        var diffval = (now - then); +	         +	        /* +	            Skips ports with no data (e.g. down) +	        */ +			if (then == 0 || now == 0 || diffval == 0) { +				continue; +			} + +            if (mode == 'tot_agg'){ +                bw_usage += parseInt(diffval/diff); +            }else if(mode == 'edge_ports' && /ge-0\/0\/4[4-7]$/.exec(port)){ +                bw_usage += parseInt(diffval/diff); +            } +	    } +	} +	return Math.round(bw_usage); +} + +function update_bandwidth() { +    var mode = $('#switch').attr('data-mode'); +	var bandwidth_in = parseInt(0); +	var bandwidth_kant = parseInt(0); +	var counter=0; +	var sw; +	for (sw in ports_now) { +		for (port in ports_now[sw]["ports"]) { +			if (!ports_now[sw]["ports"][port]) { +				console.log("ops"); +				continue; +			} +			if (!ports_5m_ago[sw]["ports"][port]) { +				console.log("ops"); +				continue; +			} +			var diff = parseInt(ports_now[sw]["ports"][port]["time"]) - parseInt(ports_5m_ago[sw]["ports"][port]["time"]); +			var then = parseInt(ports_5m_ago[sw]["ports"][port]["ifhcinoctets"]); +			var now =  parseInt(ports_now[sw]["ports"][port]["ifhcinoctets"]); +			var diffval = (now - then); +			if (then == 0 || now == 0 || diffval == 0 || diffval == NaN) { +				continue; +			} + +			if (mode == 'tot_agg'){ +			    bandwidth_in += parseInt(diffval/diff) / 1024 ; +			}else if(/e\d{1,2}-\d{1,2}/.exec(sw) || /sw\d-/.exec(sw)){ +			    if(/ge-0\/0\/4[4-7]$/.exec(port)){ +			        bandwidth_in += parseInt(diffval/diff) / 1024 ; +			    } +			} +		} +	} +	 +	bandwidth = bandwidth_in; +	$('#text-bandwidth').attr('data-used_bw', bandwidth); +} + diff --git a/web/streamlib/stream/config.pm b/web/streamlib/stream/config.pm index 4c0d4e3..1c968da 100644 --- a/web/streamlib/stream/config.pm +++ b/web/streamlib/stream/config.pm @@ -6,7 +6,7 @@ use NetAddr::IP;  our $v4net = NetAddr::IP->new("151.216.128.0/17");  our $v6net = NetAddr::IP->new("2a02:ed02::/32");  our $multicast = "udp://\@233.191.12.1"; -our $video_url = "http://cubemap.tg15.gathering.org/event.flv"; +our $video_url = "http://cubemap.tg15.gathering.org/creativia.flv";  our $tg = 15;  our $tg_full = 2015; @@ -25,7 +25,7 @@ our %streams =  (  			'port' => 80,  			'url' => 'http://cubemap.tg15.gathering.org/event.flv',  			'ts_enabled' => 1, -			'online' => 1, +			'online' => 0,  			'external' => 1,  			'interlaced' => 0,  			'has_multicast' => 0, @@ -55,7 +55,7 @@ our %streams =  (                          'port' => 80,                          'url' => 'http://cubemap.tg15.gathering.org/game.flv',                          'ts_enabled' => 1, -                        'online' => 1, +                        'online' => 0,                          'external' => 1,                          'interlaced' => 0,                          'has_multicast' => 0, diff --git a/web/weathermap/tg15.conf b/web/weathermap/tg15.conf new file mode 100644 index 0000000..e0a9420 --- /dev/null +++ b/web/weathermap/tg15.conf @@ -0,0 +1,325 @@ +# Automatically generated by php-weathermap v0.97c + +FONTDEFINE 100 docs/example/Vera.ttf 10 + +BACKGROUND images/Weathermap_background.png +WIDTH 1555 +HEIGHT 875 +HTMLSTYLE overlib +KEYFONT 100 +TITLE The Gathering 2015 - The Future is Back +TIMEPOS 746 17 Created: %b %d %Y %H:%M:%S + +KEYPOS DEFAULT 10 11 Traffic Load +KEYTEXTCOLOR 0 0 0 +KEYOUTLINECOLOR 0 0 0 +KEYBGCOLOR 255 255 255 +BGCOLOR 255 255 255 +TITLECOLOR 0 0 0 +TIMECOLOR 0 0 0 +SCALE DEFAULT 0    0    204 204 204   +SCALE DEFAULT 0    1    255 255 255   +SCALE DEFAULT 1    10   118  66 135   +SCALE DEFAULT 10   25    77 133 178   +SCALE DEFAULT 25   40   130 186 235   +SCALE DEFAULT 40   55     0 209 133   +SCALE DEFAULT 55   70   247 171 125   +SCALE DEFAULT 70   85   255 105  41   +SCALE DEFAULT 85   100  232  20  23   + +SET nowarn_clipping 1 + +# End of global section + + +# TEMPLATE-only NODEs: +NODE DEFAULT +	LABELFONT 100 +	MAXVALUE 100 + + +# TEMPLATE-only LINKs: +LINK DEFAULT +	WIDTH 5 +	BWFONT 100 +	COMMENTFONT 100 +	BWLABEL bits +	BANDWIDTH 10G + + +# regular NODEs: +NODE rs1.distro0 +	LABEL rs1.distro0 +	ICON images/rs-distro.png +	POSITION 451 312 + +NODE rs1.distro1 +	LABEL rs1.distro1 +	ICON images/rs-distro.png +	POSITION 581 607 + +NODE rs1.distro2 +	LABEL rs1.distro2 +	ICON images/rs-distro.png +	POSITION 642 265 + +NODE rs1.distro3 +	LABEL rs1.distro3 +	ICON images/rs-distro.png +	POSITION 858 610 + +NODE rs1.distro4 +	LABEL rs1.distro4 +	ICON images/rs-distro.png +	POSITION 1124 611 + +NODE rs1.distro5 +	LABEL rs1.distro5 +	ICON images/rs-distro.png +	POSITION 1113 267 + +NODE rs1.distro6 +	LABEL rs1.distro6 +	ICON images/rs-distro.png +	POSITION 1384 271 + +NODE rs1.distro7 +	LABEL rs1.distro7 +	ICON images/rs-distro.png +	POSITION 1487 592 + +NODE rs1.core +	LABEL rs1.core +	ICON images/rs1-core.png +	POSITION 1049 424 + +NODE rs1.noc +	LABEL rs1.noc +	ICON images/rs1-noc.png +	POSITION 986 776 + +NODE rs1.tele +	LABEL rs1.tele +	ICON images/rs1-tele.png +	POSITION 1533 727 + +NODE rs1.south +	LABEL rs1.south +	ICON images/rs1-generic.png +	POSITION 1695 294 + +NODE rs1.log +	LABEL rs1.log +	ICON images/rs1-generic.png +	POSITION 1230 107 + +NODE rs1.backstage +	LABEL rs1.backstage +	ICON images/rs1-generic.png +	POSITION 858 179 + +NODE rs1.gamehq +	LABEL rs1.gamehq +	ICON images/rs1-generic.png +	POSITION 610 108 + +NODE fw1-tele +	LABEL fw1-tele +	ICON images/fw1-tele.png +	POSITION 1780 828 + +NODE Interwebz +	LABEL Interwebz +	ICON images/Cloud-Filled.png +	POSITION 1576 922 + +NODE rs1.crew +	LABEL rs1.crew +	ICON images/rs1-crew.png +	POSITION 1610 469 + +NODE rs1.north +	LABEL rs1.north +	ICON images/rs1-generic.png +	POSITION 279 390 + + +# regular LINKs: +LINK rs1.tele-rs1.south +	WIDTH 2 +	INFOURL /cacti/graph.php?rra_id=all&local_graph_id=4272 +	OVERLIBGRAPH /cacti/graph_image.php?local_graph_id=4272&rra_id=0&graph_nolegend=true&graph_height=100&graph_width=300 +	TARGET /usr/share/cacti/site/rra/rs1_south_traffic_in_4275.rrd +	NODES rs1.south rs1.tele +	VIA 1704 533 + +LINK rs1.log-rs1.south +	WIDTH 2 +	INFOURL /cacti/graph.php?rra_id=all&local_graph_id=4274 +	OVERLIBGRAPH /cacti/graph_image.php?local_graph_id=4274&rra_id=0&graph_nolegend=true&graph_height=100&graph_width=300 +	TARGET /usr/share/cacti/site/rra/rs1_south_traffic_in_4277.rrd +	NODES rs1.south rs1.log +	VIA 1507 142 + +LINK rs1.gamehq-rs1.log +	WIDTH 2 +	INFOURL /cacti/graph.php?rra_id=all&local_graph_id=4450 +	OVERLIBGRAPH /cacti/graph_image.php?local_graph_id=4450&rra_id=0&graph_nolegend=true&graph_height=100&graph_width=300 +	TARGET /usr/share/cacti/site/rra/rs1_log_traffic_in_4455.rrd +	NODES rs1.gamehq rs1.log + +LINK rs1.backstage-rs1.log +	WIDTH 2 +	INFOURL /cacti/graph.php?rra_id=all&local_graph_id=4454 +	OVERLIBGRAPH /cacti/graph_image.php?local_graph_id=4454&rra_id=0&graph_nolegend=true&graph_height=100&graph_width=300 +	TARGET /usr/share/cacti/site/rra/rs1_backstage_traffic_in_4459.rrd +	NODES rs1.backstage rs1.log +	VIA 1172 176 + +LINK rs1.gamehq-rs1.north +	WIDTH 2 +	INFOURL /cacti/graph.php?rra_id=all&local_graph_id=4394 +	OVERLIBGRAPH /cacti/graph_image.php?local_graph_id=4394&rra_id=0&graph_nolegend=true&graph_height=100&graph_width=300 +	TARGET /usr/share/cacti/site/rra/rs1_north_traffic_in_4397.rrd +	NODES rs1.gamehq rs1.north +	VIA 354 202 + +LINK rs1.distro2-rs1.core +	WIDTH 4 +	INFOURL /cacti/graph.php?rra_id=all&local_graph_id=1289 +	OVERLIBGRAPH /cacti/graph_image.php?local_graph_id=1289&rra_id=0&graph_nolegend=true&graph_height=100&graph_width=300 +	TARGET /usr/share/cacti/site/rra/rs1_distro2_traffic_in_1292.rrd +	NODES rs1.distro2 rs1.core +	VIA 852 367 +	BANDWIDTH 20G + +LINK rs1.distro0-rs1.core +	WIDTH 4 +	INFOURL /cacti/graph.php?rra_id=all&local_graph_id=4459 +	OVERLIBGRAPH /cacti/graph_image.php?local_graph_id=4459&rra_id=0&graph_nolegend=true&graph_height=100&graph_width=300 +	TARGET /usr/share/cacti/site/rra/rs1_core_traffic_in_4464.rrd +	NODES rs1.core rs1.distro0 +	VIA 543 376 +	BANDWIDTH 20G + +LINK rs1.distro5-rs1.core +	WIDTH 4 +	INFOURL /cacti/graph.php?rra_id=all&local_graph_id=2610 +	OVERLIBGRAPH /cacti/graph_image.php?local_graph_id=2610&rra_id=0&graph_nolegend=true&graph_height=100&graph_width=300 +	TARGET /usr/share/cacti/site/rra/rs1_distro5_traffic_in_2613.rrd +	NODES rs1.distro5 rs1.core +	BANDWIDTH 20G + +LINK rs1.distro1-rs1.core +	WIDTH 4 +	INFOURL /cacti/graph.php?rra_id=all&local_graph_id=4460 +	OVERLIBGRAPH /cacti/graph_image.php?local_graph_id=4460&rra_id=0&graph_nolegend=true&graph_height=100&graph_width=300 +	TARGET /usr/share/cacti/site/rra/rs1_core_traffic_in_4465.rrd +	NODES rs1.core rs1.distro1 +	VIA 633 504 +	BANDWIDTH 20G + +LINK rs1.distro3-rs1.core +	WIDTH 4 +	INFOURL /cacti/graph.php?rra_id=all&local_graph_id=1649 +	OVERLIBGRAPH /cacti/graph_image.php?local_graph_id=1649&rra_id=0&graph_nolegend=true&graph_height=100&graph_width=300 +	TARGET /usr/share/cacti/site/rra/rs1_distro3_traffic_in_1652.rrd +	NODES rs1.distro3 rs1.core +	BANDWIDTH 20G + +LINK rs1.core-rs1.distro4 +	WIDTH 4 +	INFOURL /cacti/graph.php?rra_id=all&local_graph_id=2036 +	OVERLIBGRAPH /cacti/graph_image.php?local_graph_id=2036&rra_id=0&graph_nolegend=true&graph_height=100&graph_width=300 +	TARGET /usr/share/cacti/site/rra/rs1_distro4_traffic_in_2039.rrd +	NODES rs1.core rs1.distro4 +	BANDWIDTH 20G + +LINK rs1.distro6-rs1.core +	WIDTH 4 +	INFOURL /cacti/graph.php?rra_id=all&local_graph_id=4465 +	OVERLIBGRAPH /cacti/graph_image.php?local_graph_id=4465&rra_id=0&graph_nolegend=true&graph_height=100&graph_width=300 +	TARGET /usr/share/cacti/site/rra/rs1_core_traffic_in_4470.rrd +	NODES rs1.distro6 rs1.core +	VIA 1341 359 +	BANDWIDTH 20G + +LINK rs1.distro7-rs1.core +	WIDTH 4 +	INFOURL /cacti/graph.php?rra_id=all&local_graph_id=4466 +	OVERLIBGRAPH /cacti/graph_image.php?local_graph_id=4466&rra_id=0&graph_nolegend=true&graph_height=100&graph_width=300 +	TARGET /usr/share/cacti/site/rra/rs1_core_traffic_in_4471.rrd +	NODES rs1.distro7 rs1.core +	VIA 1354 521 +	BANDWIDTH 20G + +LINK rs1.core-rs1.noc +	WIDTH 8 +	INFOURL /cacti/graph.php?rra_id=all&local_graph_id=4467 +	OVERLIBGRAPH /cacti/graph_image.php?local_graph_id=4467&rra_id=0&graph_nolegend=true&graph_height=100&graph_width=300 +	TARGET /usr/share/cacti/site/rra/rs1_noc_traffic_in_4472.rrd +	NODES rs1.core rs1.noc +	VIA 1004 557 +	BANDWIDTH 80G + +LINK rs1.noc-rs1.tele +	WIDTH 7 +	INFOURL /cacti/graph.php?rra_id=all&local_graph_id=4468 +	OVERLIBGRAPH /cacti/graph_image.php?local_graph_id=4468&rra_id=0&graph_nolegend=true&graph_height=100&graph_width=300 +	TARGET /usr/share/cacti/site/rra/rs1_noc_traffic_in_4473.rrd +	NODES rs1.noc rs1.tele +	VIA 1302 784 +	BANDWIDTH 80G + +LINK rs1.tele-fw1-tele +	WIDTH 4 +	INFOURL /cacti/graph.php?rra_id=all&local_graph_id=4458 +	OVERLIBGRAPH /cacti/graph_image.php?local_graph_id=4458&rra_id=0&graph_nolegend=true&graph_height=100&graph_width=300 +	TARGET /usr/share/cacti/site/rra/rs1_core_traffic_in_4463.rrd +	NODES rs1.tele fw1-tele + +LINK rs1.tele-Interwebz +	WIDTH 7 +	INFOURL /cacti/graph.php?rra_id=all&local_graph_id=4472 +	OVERLIBGRAPH /cacti/graph_image.php?local_graph_id=4472&rra_id=0&graph_nolegend=true&graph_height=100&graph_width=300 +	TARGET /usr/share/cacti/site/rra/rs1_tele_traffic_in_4477.rrd +	NODES rs1.tele Interwebz +	BANDWIDTH 30G + +LINK rs1.crew-rs1.core +	WIDTH 4 +	INFOURL /cacti/graph.php?rra_id=all&local_graph_id=4456 +	OVERLIBGRAPH /cacti/graph_image.php?local_graph_id=4456&rra_id=0&graph_nolegend=true&graph_height=100&graph_width=300 +	TARGET /usr/share/cacti/site/rra/rs1_core_traffic_in_4461.rrd +	NODES rs1.crew rs1.core +	VIA 1445 449 +	BANDWIDTH 20G + +LINK rs1.core-rs1.tele +	WIDTH 7 +	INFOURL /cacti/graph.php?rra_id=all&local_graph_id=4457 +	OVERLIBGRAPH /cacti/graph_image.php?local_graph_id=4457&rra_id=0&graph_nolegend=true&graph_height=100&graph_width=300 +	TARGET /usr/share/cacti/site/rra/rs1_core_traffic_in_4462.rrd +	NODES rs1.core rs1.tele +	VIA 1373 643 +	BANDWIDTH 80G + +LINK rs1.backstage-rs1.distro3 +	WIDTH 2 +	INFOURL /cacti/graph.php?rra_id=all&local_graph_id=4455 +	OVERLIBGRAPH /cacti/graph_image.php?local_graph_id=4455&rra_id=0&graph_nolegend=true&graph_height=100&graph_width=300 +	TARGET /usr/share/cacti/site/rra/rs1_backstage_traffic_in_4460.rrd +	NODES rs1.backstage rs1.distro3 +	VIA 837 355 + +LINK rs1.north-rs1.noc +	WIDTH 2 +	INFOURL /cacti/graph.php?rra_id=all&local_graph_id=4475 +	OVERLIBGRAPH /cacti/graph_image.php?local_graph_id=4475&rra_id=0&graph_nolegend=true&graph_height=100&graph_width=300 +	TARGET /usr/share/cacti/site/rra/rs1_noc_traffic_in_4480.rrd +	NODES rs1.north rs1.noc +	VIA 389 679 + + + +# That's All Folks! | 
