What would cause UDP packets to be dropped when being sent to localhost?

Overview What is causing the inability to send/receive data locally? Mostly buffer space. Imagine sending a constant 10MB/second while only able to consume 5MB/second. The operating system and network stack can’t keep up, so packets are dropped. (This differs from TCP, which provides flow control and re-transmission to handle such a situation.) Even when data … Read more

How to get IP of all hosts in LAN?

You’ll have to do a ping sweep. There’s a Ping class in the System.Net namespace. Example follows. Also this is only possible if your computers don’t have firewalls running. If they’ve got a firewall enabled, there’s no way to determine this information short of doing SNMP queries on your switches. System.Net.NetworkInformation.Ping p = new System.Net.NetworkInformation.Ping(); … Read more

Unable to install openvpn-2.3.6 on Ubuntu 14.04 LTS to work work with TUN/TAP

For the error “configure: error: ssl is required but missing” You will need to install libssl-dev. sudo apt-get install libssl-dev For the error “configure: error: lzo enabled but missing” sudo apt-get install liblzo2-dev For the error “configure: error: libpam required but missing “ sudo apt-get install libpam0g-dev