Windows 10 bash shell not very impressive at all.

The new Windows 10 bash shell is not very impressive once you get it installed. I have tried it and I could not ping websites even though Microsoft Edge could access the Internet. It is possible to install packages if these lines are added to the /etc/hosts file. 91.189.91.14 archive.ubuntu.com 91.189.92.201 security.ubuntu.com91.189.91.14 archive.ubuntu.com 91.189.92.201 security.ubuntu.com … Read more

Show interface status with the command line on a Cisco switch.

The show interface brief command, issued at the elevated command prompt will show the status of all ports on the switch/router and also show your vlan interfaces you have created. tyrion#show ip interface brief Interface IP-Address OK? Method Status Protocol Vlan1 unassigned YES NVRAM up down Vlan2 172.18.31.128 YES NVRAM up up GigabitEthernet0/1 unassigned YES … Read more

How to show the routing table on Linux with the bash command shell.

Netscape Navigator install floppies.

The netstat command may be used to show the routing tables for your network connection easily. Use the netstat -r command to achieve this. iMac05:~ admin$ netstat -r Routing tables   Internet: Destination Gateway Flags Refs Use Netif Expire default 172.18.31.1 UGSc 31 0 en0 127 localhost UCS 0 0 lo0 localhost localhost UH 0 … Read more

Use iperf to check the bandwidth between two servers over the Internet.

The iperf utility is used to transfer data from one machine to another over the Internet. This is a client-server utility and is the go-to utility to test a Wide Area Network connection. To use this, type sudo apt-get install iperf. Then open port 5001 in your router and/or firewall to allow the incoming connection … Read more

Get information about your network interface with Linux.

Linux has quite a few commands for finding out information about your network adapters. Below is an example. Using the ethtool command as root. homer@deusexmachina ~ $ sudo ethtool eth2 [sudo] password for homer: Settings for eth2: Supported ports: [ TP MII ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full Supported pause frame use: No … Read more

How to get hardware information about your network adapters on Windows Server 2012.

Windows Server 2012 R2 supports quite a few cmdlets that allow the user to gain quite a bit of information about the networking configuration of the server machine. Here are a few examples with output. This command: Get-NetAdapterHardwareInfo gets hardware information about your wireless adapters. PS C:\Users\Administrator> Get-NetAdapterHardwareInfo   Name Segment Bus Device Function Slot … Read more

Useful Linux networking tricks.

Change the mac address of your network adapter. sudo ifconfig wlan0 down && sudo ifconfig wlan0 hw ether 00:11:22:33:44:55 && sudo ifconfig wlan0 upsudo ifconfig wlan0 down && sudo ifconfig wlan0 hw ether 00:11:22:33:44:55 && sudo ifconfig wlan0 up This will change the mac address of your network interface instantly. Below is an example. homer@deusexmachina … Read more

Using tcpdump to capture packets with a wireless connected computer.

Use this command to capture packets with the tcpdump command. This will output to STDOUT, but you may use redirection to divert it to a text file. [root@deusexmachina homer]# tcpdump -i wlp2s0[root@deusexmachina homer]# tcpdump -i wlp2s0 This is the output that you get when you are capturing packets. This is on my home network, so … Read more

Simple MikroTik routing. Some useful links and information.

Simple static routing with a Mikrotik device. These links are useful when you are setting up a Mikrotik device and you need assistance with the complex setup of one of these tiny but powerful devices. http://wiki.mikrotik.com/wiki/Manual:Simple_Static_Routing. Creating a DMZ with a Mikrotik device. http://www.mikrotik.com/testdocs/ros/2.8/appex/dmz.php. Simple firewall script for a Mikrotik router. http://wiki.mikrotik.com/wiki/Basic_universal_firewall_script. Mikrotik Wireless FAQ. … Read more

How to convert an IP address to binary. This is very easy with this command.

This simple one-liner allows conversion of an IP address from decimal to binary. I came up with this after playing around with cut and grep. homer@deusexmachina ~/Documents $ ipcalc 172.18.31.2 | grep Address | cut -b 33-68 10101100.00010010.00011111. 00000010homer@deusexmachina ~/Documents $ ipcalc 172.18.31.2 | grep Address | cut -b 33-68 10101100.00010010.00011111. 00000010 The -b parameter … Read more

How to list the various network devices on your Linux system and show the traffic rates.

List the network devices on your system easily The ethstats command available on a Linux system allows you to show the network interfaces installed in your machine and the data transfer rates if they are connected to a network and they are not idle. Install this script using this command. ubuntu ~ $ sudo apt … Read more

A quick listing of the most common network ports used today.

The Internet makes use of many ports for connectivity, this is a necessary part of the networks that compose the global network and enables all kinds of network protocols to work together. Here are some of the most common ports in use. Echo: 7 – echo is used to test the communication between hosts. Any … Read more

Interesting new hardware component for building a thin client PC. PCoIP PCI express card.

This is a PCI Express card that allows you to build a thin client PC. This hardware agnostic and would be very useful for re-purposing an old computer and using it to access computing resources on a home server. A thin client computer is one that does not run an operating system per se, only … Read more

Ubuntu landscape management system available for the 12.10 distribution.

The Ubuntu 12.10 distribution has a new remote management system called Landscape. This management framework allows a manager of a network of Ubuntu machines to manage all the computers from one location. The Landscape system can manage installation of updates across all of the installed desktops, and make sure all of the installed software and … Read more

Sony Developer Network cracked.

http://www.theepochtimes.com/n2/technology/lulzsec-member-arrested-group-leaks-sony-database-57296.html Cracker group LulzSec have managed to gain access to the Sony Developer Network and download the source code of the network, possibly giving them real-time access to the Sony network whenever they wish. This on top of the original cracking incident that allowed the personal data of millions of Sony customers to be downloaded … Read more