Tag: internet

Get External IP

Get the external IP of your system – useful if you have a dynamic ip… curl -s checkip.dyndns.org|sed -e ‘s/.*Current…

Sharing an Internet Connection from A Linux System using IPTables

To setup internet connection sharing in Linux system using IPTables Enable IP forwarding Run as root sysctl -w net.ipv4.ip_forward=1 To…

Download Entire Folder using Wget Command in Linux

wget -m http://www.tldp.org/HOWTO/Serial-Programming-HOWTO/ -m, –mirror shortcut for -N -r -l inf –no-remove-listing. wget -H -r –level=1 -k -p http://www.tldp.org/HOWTO/Serial-Programming-HOWTO/ -r,…