The Best Multiplatform Development Environment that Ever Lived on One Box

A wish list of capabilities for one environment included security, availability, lots of support for servers and platforms, and remote access. Here's how Linux saved the day and money, too.
ipchains

Firewalling support for Linux has gone through many changes. Unlike other aspects of the kernel's evolution that have been methodical, each change to the firewalling modules has been radical compared to prior versions. The downside of this is each change to the way Linux deals with firewalling has a new learning curve associated. Like other areas of Linux development, however, each release has been very stable and has provided support for backward compatibility. Linux is evolving into a mature, enterprise-strength firewalling solution, as evidenced by companies like Watchguard.

In previous releases of the kernel, the firewall configuration tool was called ipchains. Now, with the 2.4 release, this has once again changed to a tool called iptables. Both of these tools run on the command line but hook into the kernel to configure firewall settings at a very low level. The iptables arrangement offers significant advantages over the ipchains way of kernel organization, but ipchains will be supported for some time as a kernel loadable module. For more information, see kernel.org and IPCHAINS-HOWTO.

For my purposes, ipchains offered more than adequate support for my needs. My major concerns regarding firewalling were:

  1. Lock down all extraneous/unused ports and services to have a safe box. Since I would potentially be housing sensitive information while developing software for my clients, it was important that the box be adequately protected.

  2. Provide NAT (network address translation) services to my internal network, often called IP masquerading. Since I only had one valid IP address and a number of workstations needing access to the Internet, I needed to provide a way for to manage multiple connections through my single (real) internet connection.

  3. Provide port tunneling services, where appropriate, to other internal boxes. In some cases, I had other machines running internet protocols internally that I wanted to allow access to from the Internet.

The ASCII diagram below shows our network/firewall setup:

|------|                  ------- 192.168.1.0 |      |                | |
W1  |----------------| |  11  |                | |------|                |
                        |              |---------|
|------|                |              |         | |
|                |          eth0|200     D|eth1         Internet |  W2
|----------------|--------------|  Linux  |--------------------- |  12
|                |              |         | |------|                |
|---|         |
                        |          |   |---------|
|------|                |          |         | |      |                |
|    VM   | |  W3  |----------------|          |   201   | |  13  |
|          |         | |------|            --------       |---------|

The internal network is 192.168.1.0. Each machine on the diagram above shows the last number in its IP address. The Linux box has two physical adapters. The internal one (eth0) has an address on the internal network (200), while the external adapter (eth1) obtains its address dynamically via DHCP. This is why it is marked with a D on the diagram.

It is ipchains that allows NAT between the internal network and the Internet. All outgoing connections are allowed. All incoming connections are disallowed, with the exception of port 80 (HTTP), port 22 (SSH) and port 8080 (for an HTTP server running on the VM machine). These services will be explained in more detail below.

Notice the VM machine is shown "behind" the Linux box. This will be explained in more detail in the VMware section below.

redir

A simple program named redir, found at sammy.net, allows services running on an internal machine to be accessed from the outside (Internet) network. This program accepts connections on a certain port and proxies those connections to another port on a different machine.

First of all, external connections must be allowed to the port on the Linux box. In my case, this port is 8080. The redir command we execute looks like this:

redir --lport=8080 --caddr=192.168.1.101 --cport=8080 --syslog &

The lport is the listen port of the local machine. The caddr and cport settings are the connection address and port, respectively. The syslog parameter instructs redir to log all connections to the standard system log.

As a result of this command, any connections to the Linux box on port 8080 will be served by the web server running on the VM box (also from port 8080).

______________________

Comments

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.

Re: The Best Multiplatform Development Environment that Ever Liv

Anonymous's picture

Ever tested it when it crashed? You use ext2 fs, takes a long time to recover (hours i gues).

But otherwise nice.

Re: The Best Multiplatform Development Environment that Ever Liv

Anonymous's picture

Well, you should also try www.tightvnc.com. It really rocks, even under 28K modem.

Re: The Best Multiplatform Development Environment that Ever Liv

Anonymous's picture

thanx

will use

thanx

Webcast
How to Build an Optimal Hadoop Cluster to Store and Maintain Unlimited Amounts of Data Using Microservers

Realizing the promise of Apache® Hadoop® requires the effective deployment of compute, memory, storage and networking to achieve optimal results. With its flexibility and multitude of options, it is easy to over or under provision the server infrastructure, resulting in poor performance and high TCO. Join us for an in depth, technical discussion with industry experts from leading Hadoop and server companies who will provide insights into the key considerations for designing and deploying an optimal Hadoop cluster.

Learn More

Sponsored by AMD

White Paper
Red Hat White Paper: Using an Open Source Framework to Catch the Bad Guy

Built-in forensics, incident response, and security with Red Hat Enterprise Linux 6

Every security policy provides guidance and requirements for ensuring adequate protection of information and data, as well as high-level technical and administrative security requirements for a system in a given environment. Traditionally, providing security for a system focuses on the confidentiality of the information on it. However, protecting the data integrity and system and data availability is just as important. For example, when processing United States intelligence information, there are three attributes that require protection: confidentiality, integrity, and availability.

Learn more about catching the bad guy in this free white paper.

Learn More

Sponsored by DLT Solutions