Networking Forums

Networking Forums > Computer Networking > Linux Networking > IPTABLES, LOGS TO FILES

Reply
Thread Tools Display Modes

IPTABLES, LOGS TO FILES

 
 
JoeAley2003
Guest
Posts: n/a

 
      07-07-2004, 04:43 AM
Hi all...


I need to have a report of all connections that have been made from
my internet forwarded host 192.168.0.10.

Basically, i need...

-Host Name
-Host IP
-Port Number

of the machine my local (192.168.0.10) is accessing, and if we can go
to the state of art, i need to store the response of each connection.
I mean, if my local net request www.google.com, my server will save
the html response into a file too.


Thank you all!!!
 
Reply With Quote
 
 
 
 
Justins local account
Guest
Posts: n/a

 
      07-07-2004, 11:35 AM
(E-Mail Removed) (JoeAley2003) writes:

> Hi all...
>
>
> I need to have a report of all connections that have been made from
> my internet forwarded host 192.168.0.10.
>
> Basically, i need...
>
> -Host Name
> -Host IP
> -Port Number
>
> of the machine my local (192.168.0.10) is accessing, and if we can go
> to the state of art, i need to store the response of each connection.
> I mean, if my local net request www.google.com, my server will save
> the html response into a file too.
>
>
> Thank you all!!!


tcpdump, ethereal, ngrep, ...
--
Justin Murdock
 
Reply With Quote
 
Nuno Paquete
Guest
Posts: n/a

 
      07-15-2004, 09:20 PM
JoeAley2003 wrote:

> Hi all...
>
>
> I need to have a report of all connections that have been made from
> my internet forwarded host 192.168.0.10.
>
> Basically, i need...
>
> -Host Name
> -Host IP
> -Port Number
>
> of the machine my local (192.168.0.10) is accessing, and if we can go
> to the state of art, i need to store the response of each connection.
> I mean, if my local net request www.google.com, my server will save
> the html response into a file too.
>
>
> Thank you all!!!


Hi.
I use iptables to log well known "atacks".
For example, to log every ping-of-death attacks I've got this lines in my
iptables' configuration script:

# Port-Scanner Attack
iptables -N Port_Scann
iptables -A INPUT -p tcp --tcp-flags SYN,ACK,FIN,RST RST -j Port_Scann
iptables -A Port_Scann -m limit --limit 10/s -j LOG --log-level info
--log-prefix "Port-Scann: "
iptables -A Port_Scann -j DROP

I create a new chain because I don't just want to log, I also want to drop
those packets.
If you just want to log traffic coming from 192.168.0.10 you just need this
lines:

iptables -A FORWARD -s 192.168.0.10 -j LOG --log-level info --log-prefix
"Anything you want: "
iptables -A FORWARD -d 192.168.0.10 -j LOG --log-level info --log-prefix
"Anything you want: "

With this lines you log every traffic that is forwarded from/for your target
host.
This logs don't say much things to you, you just can seen when your user
sends/receives packets.
If you want to analyse better the traffic, like you described before (see
what sites your user is visiting), you should use a snnifer like Ethereal
to filter all the traffic comming for/from the host you want.

I hope this can help you.

Regards,

Nuno Paquete
 
Reply With Quote
 
 
 
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Re: Sequence Diagrams from Packet Analyzer logs/output files - Free Cesar Rabak Wireless Networks 0 01-01-2010 05:25 PM
iptables and firewall coonfiguration so thatit understand when ssh logs in properly and when not nass Linux Networking 1 11-09-2006 10:16 PM
Flushing logs files Dan Windows Networking 1 06-07-2004 05:39 PM
iptables v1.2.4 logs dropped packets that should have been allowed ??? Tom Van Overbeke Linux Networking 1 07-18-2003 04:32 PM
iptables v1.2.4 logs dropped packets that should have been allowed ??? Tom Van Overbeke Linux Networking 0 07-16-2003 03:18 PM



1 2 3 4 5 6 7 8 9 10 11