Re: Re[2]: Analyze load of the channel to Internet

2009-08-03 Thread Gary Gatten
If you simply want ingress/egress "load", nTop provides much more detail than I 
think you need, but in your case you would run it directly on your BSD routers. 
It will load libpcap and capture/analyze/graph the traffic flowing through your 
routers. 



From: Anton 
To: Gary Gatten 
Cc: freebsd-questions@freebsd.org 
Sent: Mon Aug 03 05:13:40 2009
Subject: Re[2]: Analyze load of the channel to Internet 


Hello Gary,




Due to what I've read about ntop - it is not really what I need.

I dont have any Cisco routers, nor switches with port-mirroring - so I could 
not collect any traffic. I have only 2 freebsd routers - and need to know - 
when the outgoing channel of first gets overflowed and I need to redirect 
outgoing traffic to second




Monday, August 3, 2009, 4:55:00 AM, you wrote:




>

almost any NIC / OS will support SNMP MIB-II counters, which includes octets Tx 
and Rx. MANY tools available for "getting" snmp mib values.




If you want util AND details on IP, ports, etc. - check out nTop.org




- Original Message -

From: owner-freebsd-questi...@freebsd.org 

To: freebsd-questions@freebsd.org 

Sent: Sun Aug 02 15:08:38 2009

Subject: Analyze load of the channel to Internet




Hello everybody...

Need to view and get real-time reporting of outgoing channel to Internet?

I think, that this is may be realized by means of ipfw (e.g. - get counters

of count rules for Internet and divide them to time, which passed between

analyzing)

But, maybe, there is an utility, to which I can communicate (or which could

analyze) my outgoing channel to Internet - and report me (mean some

redirection script) when an outgoing channel gets overflowed, and I need to

redirect all other outgoing traffic to another channel.




I would like to clear: I have to channels for Internet, meaned for gaming

club - but I don't have enough finance to afford buying some Cisco device

and this 2 channel are 512 kilobits and 768 kilobits of outgoing traffic




Please, help

___

freebsd-questions@freebsd.org mailing list

http://lists.freebsd.org/mailman/listinfo/freebsd-questions

To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"

"This email is intended to be reviewed by only the intended recipient and may 
contain information that is privileged and/or confidential. If you are not the 
intended recipient, you are hereby notified that any review, use, 
dissemination, disclosure or copying of this email and its attachments, if any, 
is strictly prohibited. If you have received this email in error, please 
immediately notify the sender by return email and delete this email from your 
system." 













-- 

Best regards,

 Antonmailto:an...@sng.by

 Administrator




Feel free to contact me 

via ICQ 363780596

via Skype dobryak47

via phone +375 29 3320987









"This email is intended to be reviewed by only the intended recipient
 and may contain information that is privileged and/or confidential.
 If you are not the intended recipient, you are hereby notified that
 any review, use, dissemination, disclosure or copying of this email
 and its attachments, if any, is strictly prohibited.  If you have
 received this email in error, please immediately notify the sender by
 return email and delete this email from your system."


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"

Re: Analyze load of the channel to Internet

2009-08-03 Thread Vincent Hoffman
Anton wrote:
>Hello Gary,
> 
>Due to what I've read about ntop - it is not really what I need.
> 
>I dont have any Cisco routers, nor switches with port-mirroring - so I
>c=uld not collect any traffic. I have only 2 freebsd routers - and
>need to k=ow - when the outgoing channel of first gets overflowed
>and I need to redi=ect outgoing traffic to second

Freebsd comes with bsnmp or if you prefer ports try net-snmp from ports,
these will let you query the snmp OID's mentioned.
I use a little perl script to query them and graph them myself for my
home router.
If you dont like snmp for some reason, putting something together using
netstat shouldnt be too hard. For example

(12:45:12 <~>) 0 # netstat -b -f inet -I fxp1
NameMtu Network   Address  Ipkts Ierrs Ibytes
 Opkts Oerrs Obytes  Coll
fxp1   1500 10.0.0.0/25   intgate 806889 -  118190683
1247743 - 1621177480 -

(excuse word wrap but it shouldnt be too hard to work out)

running this every minute from cron would make it easy to grab the in
(Ibytes) or out (Obytes) traffc and perform actions accordingly.

very quick and dirty example:
-cut
#!/bin/sh

IFNAME="fxp0"

OLDIN=$(netstat -b -I $IFNAME | awk '/Link/{print $7}')
OLDOUT=$(netstat -b -I $IFNAME | awk '/Link/{print $10}')

sleep 10

NEWIN=$(netstat -b -I $IFNAME | awk '/Link/{print $7}')
NEWOUT=$(netstat -b -I $IFNAME | awk '/Link/{print $10}')

INBPS=$(echo "( $NEWIN - $OLDIN ) / 10 " | bc )
OUTBPS=$(echo "( $NEWOUT - $OLDOUT ) / 10 " | bc )


echo "$IFNAME is doing $INBPS bytes a second inbound"
echo "$IFNAME is doing $OUTBPS bytes a second outbound"

--cut


sample output:
(13:50:09 <~>) 0 # sh foo.sh
fxp0 is doing 1247 bytes a second inbound
fxp0 is doing 51175 bytes a second outbound




Vince

> 
>Monday, August 3, 2009, 4:55:00 AM, you wrote:
> 
>>
> 
>almost any NIC / OS will support SNMP MIB-II counter=, which
>includes octets Tx and Rx. MANY tools available for "getting" snmp   mib 
> values.
> 
>If you want util AND details on IP, ports, etc. - ch=ck out nTop.org
> 
>- Original Message -----
> 
>    From: owner-freebsd-questi...@freebsd.org  freebsd-questions@freebsd.org>
> 
>To: freebsd-questions@freebsd.org 
> 
>Sent: Sun Aug 02 15:08:38 2009
> 
>Subject: Analyze load of the channel to Internet
> 
>Hello everybody...
> 
>Need to view and get real-time reporting of outgoing=hannel to
>Internet?
> 
>I think, that this is may be realized by means of ip=w (e.g. - get
>counters
> 
>of count rules for Internet and divide them to time,=hich passed
>between
> 
>analyzing)
> 
>But, maybe, there is an utility, to which I can comm=nicate (or
>which could
> 
>analyze) my outgoing channel to Internet - and repor= me (mean some
> 
>redirection script) when an outgoing channel gets ov=rflowed, and I
>need to
> 
>redirect all other outgoing traffic to another chann=l.
> 
>I would like to clear: I have to channels for Intern=t, meaned for
>gaming
> 
>club - but I don't have enough finance to afford buy=ng some Cisco
>device
> 
>and this 2 channel are 512 kilobits and 768 kilobits=f outgoing
>traffic
> 
>Please, help
> 
>___
> 
>freebsd-questions@freebsd.org mailing list
> 
>[1]http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> 
>To unsubscribe, send any mail to "freebsd-questions-   
> unsubscr...@freebsd.org"
> 
>"This email is intended to be reviewed by only the i=tended
>recipient and may contain information that is privileged and/or con   
> fidential. If you are not the intended recipient, you are hereby
>notified t=at any review, use, dissemination, disclosure or copying
>of this email and=ts attachments, if any, is strictly prohibited. If
>you have received this=mail in error, please immediately notify the
>sender by return email and d=lete this email from your system."
> 
>--
> 
>Best regards,
> 
> Anton   &nbs=;[2]mailto:an...@sng.by
> 
> Administrator
> 
>Feel free to contact me
> 
>via ICQ 363780596
> 
>via Skype dobryak47
> 
>via phone +375 29 3320987
> 
> References
> 
>1. 3D"http://lists.freebsd.org/mailman/listinfo/freeb   2. 
> 3D"mailto:an...@sng.by";
> ___
> freebsd-questions@freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re[2]: Analyze load of the channel to Internet

2009-08-03 Thread Anton

   Hello Gary,

   Due to what I've read about ntop - it is not really what I need.

   I dont have any Cisco routers, nor switches with port-mirroring - so I
   c= ould not collect any traffic. I have only 2 freebsd routers - and
   need to k= now - when the outgoing channel of first gets overflowed
   and I need to redi= rect outgoing traffic to second

   Monday, August 3, 2009, 4:55:00 AM, you wrote:

   >

   almost any NIC / OS will support SNMP MIB-II counter= s, which
   includes octets Tx and Rx. MANY tools available for "getting" snmp   mib 
values.

   If you want util AND details on IP, ports, etc. - ch= eck out nTop.org

   - Original Message -

   From: owner-freebsd-questi...@freebsd.org 

   To: freebsd-questions@freebsd.org 

   Sent: Sun Aug 02 15:08:38 2009

   Subject: Analyze load of the channel to Internet

   Hello everybody...

   Need to view and get real-time reporting of outgoing= channel to
   Internet?

   I think, that this is may be realized by means of ip= fw (e.g. - get
   counters

   of count rules for Internet and divide them to time,= which passed
   between

   analyzing)

   But, maybe, there is an utility, to which I can comm= unicate (or
   which could

   analyze) my outgoing channel to Internet - and repor= t me (mean some

   redirection script) when an outgoing channel gets ov= erflowed, and I
   need to

   redirect all other outgoing traffic to another chann= el.

   I would like to clear: I have to channels for Intern= et, meaned for
   gaming

   club - but I don't have enough finance to afford buy= ing some Cisco
   device

   and this 2 channel are 512 kilobits and 768 kilobits= of outgoing
   traffic

   Please, help

   ___

   freebsd-questions@freebsd.org mailing list

   [1]http://lists.freebsd.org/mailman/listinfo/freebsd-questions

   To unsubscribe, send any mail to "freebsd-questions-   
unsubscr...@freebsd.org"

   "This email is intended to be reviewed by only the i= ntended
   recipient and may contain information that is privileged and/or con   
fidential. If you are not the intended recipient, you are hereby
   notified t= hat any review, use, dissemination, disclosure or copying
   of this email and= its attachments, if any, is strictly prohibited. If
   you have received this= email in error, please immediately notify the
   sender by return email and d= elete this email from your system."

   --

   Best regards,

Anton   &nbs= p;[2]mailto:an...@sng.by

Administrator

   Feel free to contact me

   via ICQ 363780596

   via Skype dobryak47

   via phone +375 29 3320987

References

   1. 3D"http://lists.freebsd.org/mailman/listinfo/freeb   2. 
3D"mailto:an...@sng.by";
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: Analyze load of the channel to Internet

2009-08-02 Thread Gary Gatten
almost any NIC / OS will support SNMP MIB-II counters, which includes octets Tx 
and Rx. MANY tools available for "getting" snmp mib values.

If you want util AND details on IP, ports, etc. - check out nTop.org

- Original Message -
From: owner-freebsd-questi...@freebsd.org 
To: freebsd-questions@freebsd.org 
Sent: Sun Aug 02 15:08:38 2009
Subject: Analyze load of the channel to Internet

Hello everybody...
Need to view and get real-time reporting of outgoing channel to Internet?
I think, that this is may be realized by means of ipfw (e.g. - get counters
of count rules for Internet and divide them to time, which passed between
analyzing)
But, maybe, there is an utility, to which I can communicate (or which could
analyze) my outgoing channel to Internet - and report me (mean some
redirection script) when an outgoing channel gets overflowed, and I need to
redirect all other outgoing traffic to another channel.

I would like to clear: I have to channels for Internet, meaned for gaming
club - but I don't have enough finance to afford buying some Cisco device
and this 2 channel are 512 kilobits and 768 kilobits of outgoing traffic

Please, help
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"








"This email is intended to be reviewed by only the intended recipient
 and may contain information that is privileged and/or confidential.
 If you are not the intended recipient, you are hereby notified that
 any review, use, dissemination, disclosure or copying of this email
 and its attachments, if any, is strictly prohibited.  If you have
 received this email in error, please immediately notify the sender by
 return email and delete this email from your system."


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"

Analyze load of the channel to Internet

2009-08-02 Thread Антон Курьян
Hello everybody...
Need to view and get real-time reporting of outgoing channel to Internet?
I think, that this is may be realized by means of ipfw (e.g. - get counters
of count rules for Internet and divide them to time, which passed between
analyzing)
But, maybe, there is an utility, to which I can communicate (or which could
analyze) my outgoing channel to Internet - and report me (mean some
redirection script) when an outgoing channel gets overflowed, and I need to
redirect all other outgoing traffic to another channel.

I would like to clear: I have to channels for Internet, meaned for gaming
club - but I don't have enough finance to afford buying some Cisco device
and this 2 channel are 512 kilobits and 768 kilobits of outgoing traffic

Please, help
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"