It seems like you're talking about rc.inet1 starting up. You can do two things:
1. Comment the rc.inet1 section in rc.M:
Code:
# Initialize the networking hardware
-if [ -x /etc/rc.d/rc.inet1 ]; then
- . /etc/rc.d/rc.inet1
-fi
# Initialize the networking hardware
+#if [ -x /etc/rc.d/rc.inet1 ]; then
+# . /etc/rc.d/rc.inet1
+#fi
Or just make it so that rc.inet1 can't be executed:
Code:
# chmod -x /etc/rc.d/rc.inet1