DEV Community

John Ellee Robado
John Ellee Robado

Posted on

Allow IP Address of employees from work from home using Putty Terminal

iptables -A INPUT -s { employee_ip_address } -j ACCEPT

to know your public ip address, google "whats my ip address"

My Public IP Address is 49.145.34.209

type this command in PuttyTerminal
- iptables -A INPUT -s 49.145.34.209 -j ACCEPT

Top comments (0)