manoj kumar


{ City } delhi
< Country > india
* Profession * system administrator
User No # 29428
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 # 29
Users Marked my Answers as Wrong # 0
Questions / { manoj kumar }
Questions Answers Category Views Company eMail




Answers / { manoj kumar }

Question { 10042 }

How to trace any process background processing?


Answer

strace -p PID

Is This Answer Correct ?    14 Yes 0 No

Question { NetEnrich, 11303 }

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 -I INPUT -s 172.168.0.1 -p tcp --dport 80 -d 192.168.0.2 -j ACCEPT

Is This Answer Correct ?    15 Yes 0 No