4th June 2010
in
Networking, cli
If you are on a LAN and wish to find out which computers in it currently have access to that certain LAN, you can use the following command:
for ip in $(seq 1 254); do ping -c 1 192.168.1.$ip>/dev/null; [ $? -eq 0 ] &[...]
Tags: LAN, ping
8 Comments
28th April 2010
in
Networking
People often get confused on which OS is better on getting the best performance or what’s best suited for a website. And this question is often debatable since it usually depends on what programs or scripting language [...]
3 Comments
26th September 2009
in
Hardware, Networking
If you wish to change your MAC address in Linux, all you have to do is bring the interface down then use the hw ether switch:
ifconfig eth0 downifconfig eth0 hw ether 02:01:02:03:04:08ifconfig eth0 up
[...]
Tags: MAC address
2 Comments
15th August 2009
in
Networking, cli
If you want to find out what external IP address your router has assigned to it, you can either search the Internet for sites that can display that said IP address or you can use the Linux command line:
wget -O - -q ican[...]
Tags: IP, router
8 Comments