sri krishna


{ City } bangalore
< Country > india
* Profession *
User No # 54229
Total Questions Posted # 0
Total Answers Posted # 2

Total Answers Posted for My Questions # 0
Total Views for My Questions # 0

Users Marked my Answers as Correct # 2
Users Marked my Answers as Wrong # 10
Questions / { sri krishna }
Questions Answers Category Views Company eMail




Answers / { sri krishna }

Question { 11423 }

How to monitor ports in a linux machine, with single
command?


Answer

nmap is not the default available command.we can use netstat
netstat -nl, netstat -nltp ,netstat -nulp

Is This Answer Correct ?    0 Yes 1 No

Question { NetEnrich, 11357 }

I want to built a fire wall using iptables. My condition is
" inbound to 192.168.0.2 with a port of 80 from
172.168.0.1 should accept"


Answer

iptables -t filter -I INPUT -s 192.168.0.2 -P tcp --dport 80
-J ACCEPT

Is This Answer Correct ?    2 Yes 9 No