How To: Open Client Socket in Java With TimeoutJune 6th, 2006 Often we need to create a (client) socket connection in java but we do not want to wait indefinitely for the connection to open. We need a way to timeout socket connections.
How To: Server Socket Hijacking in JavaJune 6th, 2006 Overview
Socket hijacking allows you to override a server socket opened on the same port by a different process. There are several good uses of socket hijacking like developing a port blocker application (poor man's firewall) and some bad uses too.
Understanding Java: Simplified Hello World for Socket ProgrammingApril 15th, 2006 In my experience much of the complexities a newcomer faces in the Java world is understanding extraneous stuff like handling exceptions or formatting data etc. Today I was requested for the nth time (n -> infinity) how to write a simple socket client and server (actually debug one).
Server Security: How To Prevent Socket Hijacking on WindowsJune 14th, 2006 You can forcibly bind to the same address and port to which there is an open server socket by using SO_REUSEADDR option (ServerSocket.setReuseAddress(boolean on) in Java). Such reuse can be exploited by malicious applications to disrupt the functioning of the original server application and worse.
How do I Enable Remote Access To MySQL Database?April 27th, 2009 Suppose you want to change and enable the remote access to MySQL DB on your linux server (Debian). By default, you don't get such privileges so you will have to work your way through this.
How To Add Multiple IP Addresses On Linux / Fedora Core / FedoraSeptember 11th, 2007 Most guide to adding multiple IP addresses on Linux starts with the Microsoft-like solution of using ifconfig. While the solution is correct it doesn't survive a reboot or even a network restart.
How to Monitor the Server And Network in LinuxSeptember 23rd, 2009 For any System administrator its tough to monitor large Linux networks continuously without a streamlined system. Looking for an efficient network monitoring solution for Linux systems we came across Nagios.
How To Disable IPv6 on Fedora / Linux & WhyAugust 21st, 2007 A guide to easily disable IPv6 support on your Linux workstation / server:
1. Add the two lines, if not already present, to /etc/modprobe.conf:
alias net-pf-10 off
alias ipv6 off
For Fedora 7 you should add the command to blacklist instead as shown below:
blacklist net-pf-10
Note: I haven't personally tested on Fedora 7.
How to find Hardware Details in LinuxAugust 28th, 2009 We often come across a lot of inquires on Linux systems. One of the most commonly asked questions is how to find the hardware specs /details on Linux.
How To Use Linksys Compact Wireless-G Internet Video Camera WVC54GC From LinuxJune 22nd, 2008 The Linksys Compact Wireless-G Internet Video Camera WVC54GC is a Linux based wireless webcam with its own streaming web server built in. Windows users can view the video stream through their browser without the need to install any extra software other than allowing the supplied Active-X control to run.
Network Masks / Netmasks for DummiesOctober 16th, 2007 Network masks is a notation to group IP addresses. Let's take a familiar analogy.
FireStarter - Super Easy Powerful Firewall for LinuxApril 16th, 2007 FireStarter is for Linux what ZoneAlarm is for Windows, a simple to use but fully functional firewall for small business and homes for free. The simplicity of firewall even surpasses ZoneAlarm, even a novice can set it up properly with very minimum knowledge.
How to find ethernet / MAC address on LinuxSeptember 20th, 2009 In Linux networking is easy, you just have to know how. We will discuss below how you can find your own machine's MAC address for all the attached ethernet cards as well as MAC addresses on other machines in the network.
How to Monitor System Activity, Hardware and System information in LinuxSeptember 17th, 2009 For any Linux user monitoring the system's performance can be an intricate task. Most of the Linux distributions already come with loads of monitoring tools.
How to display the process in Linux SystemSeptember 21st, 2009 As a part of monitoring Linux system you often need to know about the currently running processes in Linux systems. Once you know the process running on the Linux system you can kill the process that are slowing down your system.