Archive for March, 2014

REHL file system become read only in VMWare

Saturday, March 29th, 2014

This become a known issue for RHEL if you are on a busy I/O storage.

http://kb.vmware.com/selfservice/microsites/search.do?language=en_US&cmd=displayKC&externalId=51306

Work around is to remount the filesystem using the following command.

mount -o remount /

Advance Routing for Multi-homed Linux

Saturday, March 1st, 2014

This page shows you how to configure a Multi-homed Linux Box with 2 Network Interfaces to connect to the internet properly.

 

Multi-homed Network

 

Step 1 – Update /etc/iproute2/rt_tables

echo 1 NET100 >> /etc/iproute2/rt_tables
echo 2 NET200 >> /etc/iproute2/rt_tables

 

Step 2 – Update the Routing Table

ip route add default via 192.168.100.1 dev eth1 table NET100
ip rule add from 192.168.100.0/24 table NET100

ip route add default via 192.168.200.1 dev eth0 table NET200
ip rule add from 192.168.200.0/24 table NET200