LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Server
User Name
Password
Linux - Server This forum is for the discussion of Linux Software used in a server related context.

Notices


Reply
  Search this Thread
Old 12-21-2010, 03:46 PM   #1
jeffpoulsen
Member
 
Registered: Sep 2002
Posts: 46

Rep: Reputation: 15
Question Cannot remove old ip address from system


Hello All,

I have built a CentOS server, as many times before, and have has to move it to a new location/network. I had changed the virtual site that was configured with a virtual ip address on the same nic. I have since removed the virtual nic, checked my host files and network files and nothing now has the old ip address. I had issues I believed caused by dns or ip address so I finally uninstalled Apache. Reinstalled it. I still cannot access the site that was there. I have cleared all the data I can from the Firefox browser such as histoy. However when I go to "http://localhost" it says it cannot connect to the old ip address. WHERE IS THAT BEING SENT FROM??? It's driving me crazy. I really don't want to rebuild the server as there are other things that took some time to get configured. Thanks,jeff
 
Old 12-21-2010, 04:12 PM   #2
kbp
Senior Member
 
Registered: Aug 2009
Posts: 3,790

Rep: Reputation: 653Reputation: 653Reputation: 653Reputation: 653Reputation: 653Reputation: 653
You'll need to provide a bit more info ..

- content of /etc/hosts
- 'ip addr' output
- httpd config

cheers
 
Old 12-21-2010, 04:52 PM   #3
jeffpoulsen
Member
 
Registered: Sep 2002
Posts: 46

Original Poster
Rep: Reputation: 15
Thanks kbp,

Below are the files and ifconfig return.I have had to remove some lines from the httpd.config file as it exeeds the line limit for the forum. If you have another suggestion to break the file into pieces let me know.

Thanks again, jeff

hosts
-------------------
# Do not remove the following line, or various programs
# that require network functionality will fail.
127.0.0.1 mserver1 localhost.localdomain localhost
::1 localhost6.localdomain6 localhost6
192.168.11.50 mserver1


ifcfg-eth0
-------------------------
# Intel Corporation 82541PI Gigabit Ethernet Controller
DEVICE=eth0
BOOTPROTO=none
BROADCAST=192.168.11.255
HWADDR=00:1B:21:0B:9D:18
IPADDR=192.168.11.50
IPV6INIT=yes
IPV6_AUTOCONF=yes
NETMASK=255.255.255.0
NETWORK=192.168.11.0
ONBOOT=yes
GATEWAY=192.168.11.1
TYPE=Ethernet
PEERDNS=yes
USERCTL=no

ifconfig
-----------------------------

> ifconfig
eth0 Link encap:Ethernet HWaddr 00:1B:21:0B:9D:18
inet addr:192.168.11.50 Bcast:192.168.11.255 Mask:255.255.255.0
inet6 addr: fe80::21b:21ff:fe0b:9d18/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:24821 errors:0 dropped:0 overruns:0 frame:0
TX packets:23387 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:100
RX bytes:24674501 (23.5 MiB) TX bytes:5086413 (4.8 MiB)

lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
inet6 addr: ::1/128 Scope:Host
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:18634 errors:0 dropped:0 overruns:0 frame:0
TX packets:18634 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:21755845 (20.7 MiB) TX bytes:21755845 (20.7 MiB)




httpd.conf
-----------------------------
#ServerRoot "/etc/httpd"

#
# PidFile: The file in which the server should record its process
# identification number when it starts.
#
PidFile run/httpd.pid

#
# Timeout: The number of seconds before receives and sends time out.
#
Timeout 120

#
# KeepAlive: Whether or not to allow persistent connections (more than
# one request per connection). Set to "Off" to deactivate.
#
KeepAlive Off

#
# MaxKeepAliveRequests: The maximum number of requests to allow
# during a persistent connection. Set to 0 to allow an unlimited amount.
# We recommend you leave this number high, for maximum performance.
#
MaxKeepAliveRequests 100

#
# KeepAliveTimeout: Number of seconds to wait for the next request from the
# same client on the same connection.
#
KeepAliveTimeout 15

##
## Server-Pool Size Regulation (MPM specific)
##

# prefork MPM
# StartServers: number of server processes to start
# MinSpareServers: minimum number of server processes which are kept spare
# MaxSpareServers: maximum number of server processes which are kept spare
# ServerLimit: maximum value for MaxClients for the lifetime of the server
# MaxClients: maximum number of server processes allowed to start
# MaxRequestsPerChild: maximum number of requests a server process serves
<IfModule prefork.c>
StartServers 8
MinSpareServers 5
MaxSpareServers 20
ServerLimit 256
MaxClients 256
MaxRequestsPerChild 4000
</IfModule>

# worker MPM
# StartServers: initial number of server processes to start
# MaxClients: maximum number of simultaneous client connections
# MinSpareThreads: minimum number of worker threads which are kept spare
# MaxSpareThreads: maximum number of worker threads which are kept spare
# ThreadsPerChild: constant number of worker threads in each server process
# MaxRequestsPerChild: maximum number of requests a server process serves
<IfModule worker.c>
StartServers 2
MaxClients 150
MinSpareThreads 25
MaxSpareThreads 75
ThreadsPerChild 25
MaxRequestsPerChild 0
</IfModule>

#
# Listen: Allows you to bind Apache to specific IP addresses and/or
# ports, in addition to the default. See also the <VirtualHost>
# directive.
#
# Change this to Listen on specific IP addresses as shown below to
# prevent Apache from glomming onto all bound IP addresses (0.0.0.0)
#
#Listen 12.34.56.78:80
Listen 80

#
# Dynamic Shared Object (DSO) Support
#
# To be able to use the functionality of a module which was built as a DSO you
# have to place corresponding `LoadModule' lines at this location so the
# directives contained in it are actually available _before_ they are used.
# Statically compiled modules (those listed by `httpd -l') do not need
# to be loaded here.
#

### Section 2: 'Main' server configuration
#
# The directives in this section set up the values used by the 'main'
# server, which responds to any requests that aren't handled by a
# <VirtualHost> definition. These values also provide defaults for
# any <VirtualHost> containers you may define later in the file.
#
# All of these directives may appear inside <VirtualHost> containers,
# in which case these default settings will be overridden for the
# virtual host being defined.
#

#
# ServerAdmin: Your address, where problems with the server should be
# e-mailed. This address appears on some server-generated pages, such
# as error documents. e.g. admin@your-domain.com
#
ServerAdmin root@localhost

#
# ServerName gives the name and port that the server uses to identify itself.
# This can often be determined automatically, but we recommend you specify
# it explicitly to prevent problems during startup.
#
# If this is not set to valid DNS name for your host, server-generated
# redirections will not work. See also the UseCanonicalName directive.
#
# If your host doesn't have a registered DNS name, enter its IP address here.
# You will have to access it by its address anyway, and this will make
# redirections work in a sensible way.
#
#ServerName www.example.com:80

#
# UseCanonicalName: Determines how Apache constructs self-referencing
# URLs and the SERVER_NAME and SERVER_PORT variables.
# When set "Off", Apache will use the Hostname and Port supplied
# by the client. When set "On", Apache will use the value of the
# ServerName directive.
#
UseCanonicalName on

#
# DocumentRoot: The directory out of which you will serve your
# documents. By default, all requests are taken from this directory, but
# symbolic links and aliases may be used to point to other locations.
#
#DocumentRoot "/var/www/html"
DocumentRoot "/web/www/murgio"
#
# Each directory to which Apache has access can be configured with respect
# to which services and features are allowed and/or disabled in that
# directory (and its subdirectories).
#
# First, we configure the "default" to be a very restrictive set of
# features.
#
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>

#
# Note that from this point forward you must specifically allow
# particular features to be enabled - so if something's not working as
# you might expect, make sure that you have specifically enabled it
# below.
#

#
# This should be changed to whatever you set DocumentRoot to.
#
#<Directory "/var/www/html">
<Directory "/web/www/murgio">
#
# Possible values for the Options directive are "None", "All",
# or any combination of:
# Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
#
# Note that "MultiViews" must be named *explicitly* --- "Options All"
# doesn't give it to you.
#
# The Options directive is both complicated and important. Please see
# http://httpd.apache.org/docs/2.2/mod/core.html#options
# for more information.
#
Options Indexes FollowSymLinks

#
# AllowOverride controls what directives may be placed in .htaccess files.
# It can be "All", "None", or any combination of the keywords:
# Options FileInfo AuthConfig Limit
#
AllowOverride None

#
# Controls who can get stuff from this server.
#
Order allow,deny
Allow from all

</Directory>

#
# UserDir: The name of the directory that is appended onto a user's home
# directory if a ~user request is received.
#
# The path to the end user account 'public_html' directory must be
# accessible to the webserver userid. This usually means that ~userid
# must have permissions of 711, ~userid/public_html must have permissions
# of 755, and documents contained therein must be world-readable.
# Otherwise, the client will only receive a "403 Forbidden" message.
#
# See also: http://httpd.apache.org/docs/misc/FAQ.html#forbidden
#
<IfModule mod_userdir.c>
#
# UserDir is disabled by default since it can confirm the presence
# of a username on the system (depending on home directory
# permissions).
#
UserDir disable

#
# To enable requests to /~user/ to serve the user's public_html
# directory, remove the "UserDir disable" line above, and uncomment
# the following line instead:
#
#UserDir public_html

</IfModule>

#
# Control access to UserDir directories. The following is an example
# for a site where these directories are restricted to read-only.
#
#<Directory /home/*/public_html>
# AllowOverride FileInfo AuthConfig Limit
# Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
# <Limit GET POST OPTIONS>
# Order allow,deny
# Allow from all
# </Limit>
# <LimitExcept GET POST OPTIONS>
# Order deny,allow
# Deny from all
# </LimitExcept>
#</Directory>

#
# DirectoryIndex: sets the file that Apache will serve if a directory
# is requested.
#
# The index.html.var file (a type-map) is used to deliver content-
# negotiated documents. The MultiViews Option can be used for the
# same purpose, but it is much slower.
#
DirectoryIndex index.php index.html index.html.var

#
# AccessFileName: The name of the file to look for in each directory
# for additional configuration directives. See also the AllowOverride
# directive.
#
AccessFileName .htaccess

#
# The following lines prevent .htaccess and .htpasswd files from being
# viewed by Web clients.
#
<Files ~ "^\.ht">
Order allow,deny
Deny from all
</Files>

#
# TypesConfig describes where the mime.types file (or equivalent) is
# to be found.
#
TypesConfig /etc/mime.types

#
# DefaultType is the default MIME type the server will use for a document
# if it cannot otherwise determine one, such as from filename extensions.
# If your server contains mostly text or HTML documents, "text/plain" is
# a good value. If most of your content is binary, such as applications
# or images, you may want to use "application/octet-stream" instead to
# keep browsers from trying to display binary files as though they are
# text.
#
DefaultType text/plain

#
# The mod_mime_magic module allows the server to use various hints from the
# contents of the file itself to determine its type. The MIMEMagicFile
# directive tells the module where the hint definitions are located.
#
<IfModule mod_mime_magic.c>
# MIMEMagicFile /usr/share/magic.mime
MIMEMagicFile conf/magic
</IfModule>

#
# HostnameLookups: Log the names of clients or just their IP addresses
# e.g., www.apache.org (on) or 204.62.129.132 (off).
# The default is off because it'd be overall better for the net if people
# had to knowingly turn this feature on, since enabling it means that
# each client request will result in AT LEAST one lookup request to the
# nameserver.
#
HostNameLookups off

#
# EnableMMAP: Control whether memory-mapping is used to deliver
# files (assuming that the underlying OS supports it).
# The default is on; turn this off if you serve from NFS-mounted
# filesystems. On some systems, turning it off (regardless of
# filesystem) can improve performance; for details, please see
# http://httpd.apache.org/docs/2.2/mod...tml#enablemmap
#
#EnableMMAP off

#
# EnableSendfile: Control whether the sendfile kernel support is
# used to deliver files (assuming that the OS supports it).
# The default is on; turn this off if you serve from NFS-mounted
# filesystems. Please see
# http://httpd.apache.org/docs/2.2/mod...enablesendfile
#
#EnableSendfile off

#
# ErrorLog: The location of the error log file.
# If you do not specify an ErrorLog directive within a <VirtualHost>
# container, error messages relating to that virtual host will be
# logged here. If you *do* define an error logfile for a <VirtualHost>
# container, that host's errors will be logged there and not here.
#
ErrorLog logs/error_log

#
# LogLevel: Control the number of messages logged to the error_log.
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
#
LogLevel warn

#
# The following directives define some format nicknames for use with
# a CustomLog directive (see below).
#ServerSignature On

#
# Aliases: Add here as many aliases as you need (with no limit). The format is
# Alias fakename realname
#
# Note that if you include a trailing / on fakename then the server will
# require it to be present in the URL. So "/icons" isn't aliased in this
# example, only "/icons/". If the fakename is slash-terminated, then the
# realname must also be slash terminated, and if the fakename omits the
# trailing slash, the realname must also omit it.
#
# We include the /icons/ alias for FancyIndexed directory listings. If you
# do not use FancyIndexing, you may comment this out.
#
Alias /icons/ "/var/www/icons/"

<Directory "/var/www/icons">
Options Indexes MultiViews
AllowOverride None
Order allow,deny
Allow from all
</Directory>

#
# WebDAV module configuration section.
#
<IfModule mod_dav_fs.c>
# Location of the WebDAV lock database.
DAVLockDB /var/lib/dav/lockdb
</IfModule>

#
# ScriptAlias: This controls which directories contain server scripts.
# ScriptAliases are essentially the same as Aliases, except that
# documents in the realname directory are treated as applications and
# run by the server when requested rather than as documents sent to the client.
# The same rules about trailing "/" apply to ScriptAlias directives as to
# Alias.
#
ScriptAlias /cgi-bin/ "/var/www/cgi-bin/"

#
# "/var/www/cgi-bin" should be changed to whatever your ScriptAliased
# CGI directory exists, if you have that configured.
#
<Directory "/var/www/cgi-bin">
AllowOverride None
Options None
Order allow,deny
Allow from all
</Directory>

#
# Redirect allows you to tell clients about documents which used to exist in
# your server's namespace, but do not anymore. This allows you to tell the
# clients where to look for the relocated document.
# Example:
# Redirect permanent /foo http://www.example.com/bar

#
# Directives controlling the display of server-generated directory listings.
#

### Section 3: Virtual Hosts
#
# VirtualHost: If you want to maintain multiple domains/hostnames on your
# machine you can setup VirtualHost containers for them. Most configurations
# use only name-based virtual hosts so the server doesn't need to worry about
# IP addresses. This is indicated by the asterisks in the directives below.
#
# Please see the documentation at
# <URL:http://httpd.apache.org/docs/2.2/vhosts/>
# for further details before you try to setup virtual hosts.
#
# You may use the command line option '-S' to verify your virtual host
# configuration.

#
# Use name-based virtual hosting.
#
#NameVirtualHost *:80
#
# NOTE: NameVirtualHost cannot be used without a port specifier
# (e.g. :80) if mod_ssl is being used, due to the nature of the
# SSL protocol.
#

#
# VirtualHost example:
# Almost any Apache directive may go into a VirtualHost container.
# The first VirtualHost section is used for requests without a known
# server name.
#
#<VirtualHost *:80>
# ServerAdmin webmaster@dummy-host.example.com
# DocumentRoot /www/docs/dummy-host.example.com
# ServerName dummy-host.example.com
# ErrorLog logs/dummy-host.example.com-error_log
# CustomLog logs/dummy-host.example.com-access_log common
#</VirtualHost>
 
Old 12-21-2010, 05:01 PM   #4
kbp
Senior Member
 
Registered: Aug 2009
Posts: 3,790

Rep: Reputation: 653Reputation: 653Reputation: 653Reputation: 653Reputation: 653Reputation: 653
Just attach the httpd config as a text file .. we're probably missing the important part
 
Old 12-21-2010, 06:13 PM   #5
jeffpoulsen
Member
 
Registered: Sep 2002
Posts: 46

Original Poster
Rep: Reputation: 15
Sorry for being so inept,
 
Old 12-21-2010, 06:59 PM   #6
jeffpoulsen
Member
 
Registered: Sep 2002
Posts: 46

Original Poster
Rep: Reputation: 15
httpd.configl.txt
 
Old 12-21-2010, 07:07 PM   #7
kbp
Senior Member
 
Registered: Aug 2009
Posts: 3,790

Rep: Reputation: 653Reputation: 653Reputation: 653Reputation: 653Reputation: 653Reputation: 653
Hi Jeff,

I'm guessing the extra site was added as a vhost under /etc/httpd/conf.d .. could you please check those files and see if you have any vhost configurations ?
 
Old 12-22-2010, 03:42 AM   #8
jeffpoulsen
Member
 
Registered: Sep 2002
Posts: 46

Original Poster
Rep: Reputation: 15
I see no files that contain vhost or anything that looks like a virtual host file. The files look normal and I did open each and found no mention of the old ip address, or any ip address at all.
 
Old 12-22-2010, 09:00 AM   #9
jwl17330536
Member
 
Registered: Feb 2010
Location: Raleigh, NC
Posts: 83

Rep: Reputation: 22
What is the output from:

find /etc -type f -exec grep -il "old_ip_address" {} \;

replace old_ip_address obviously with your old ip address
 
Old 12-22-2010, 09:05 AM   #10
jeffpoulsen
Member
 
Registered: Sep 2002
Posts: 46

Original Poster
Rep: Reputation: 15
I entered the command line using the old ip address and it returned nothing
 
Old 12-22-2010, 09:15 AM   #11
jeffpoulsen
Member
 
Registered: Sep 2002
Posts: 46

Original Poster
Rep: Reputation: 15
I have run a grep from root for the last octet of the ip address

> grep '51' *
install.log:Installing perl-IO-Socket-INET6 - 2.51-2.fc6.noarch
install.log:Installing mysql-connector-odbc - 3.51.12-2.2.i386
install.log:Installing system-config-users - 1.2.51-4.el5.noarch
install.log.syslog:<86>Nov 29 08:54:32 useradd[1101]: new group: name=smmsp, GID=51
install.log.syslog:<86>Nov 29 08:54:32 useradd[1101]: new user: name=smmsp, UID=51, GID=51, home=/var/spool/mqueue, shell=/sbin/nologin
install.log.syslog:<86>Nov 29 08:55:39 useradd[2051]: new group: name=sshd, GID=74
install.log.syslog:<86>Nov 29 08:55:39 useradd[2051]: new user: name=sshd, UID=74, GID=74, home=/var/empty/sshd, shell=/sbin/nologin
install.log.syslog:<86>Nov 29 08:56:46 useradd[2351]: new group: name=haldaemon, GID=68
install.log.syslog:<86>Nov 29 08:56:46 useradd[2351]: new user: name=haldaemon, UID=68, GID=68, home=/, shell=/sbin/nologin

But I am not sure if this means anything.
 
Old 12-22-2010, 05:26 PM   #12
ComputerErik
Member
 
Registered: Apr 2005
Location: NYC
Distribution: Debian, RHEL
Posts: 269

Rep: Reputation: 54
Is Apache running and listening? Is iptables running, possibly blocking something? What do the following give you:

netstat -l

iptables -L

Also what about DNS? It is possible there is actually an entry on a local DNS server pointing to the old server IP as an attempt to fix some problem.

Last edited by ComputerErik; 12-22-2010 at 05:28 PM.
 
Old 12-22-2010, 06:09 PM   #13
jeffpoulsen
Member
 
Registered: Sep 2002
Posts: 46

Original Poster
Rep: Reputation: 15
Yeah, apache is up and listening. I have all firewalls turned off. The output of the commands are below. Thanks,jeff:

> netstat -i
Kernel Interface table
Iface MTU Met RX-OK RX-ERR RX-DRP RX-OVR TX-OK TX-ERR TX-DRP TX-OVR Flg
eth0 1500 0 34628 0 0 0 35378 0 0 0 BMRU
lo 16436 0 18662 0 0 0 18662 0 0 0 LRU



> netstat -l
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address Foreign Address State
tcp 0 0 *:mysql *:* LISTEN
tcp 0 0 *:sunrpc *:* LISTEN
tcp 0 0 *:ndmp *:* LISTEN
tcp 0 0 *:723 *:* LISTEN
tcp 0 0 *:ftp *:* LISTEN
tcp 0 0 mserver1:ipp *:* LISTEN
tcp 0 0 mserver1:smtp *:* LISTEN
tcp 0 0 *:http *:* LISTEN
tcp 0 0 *:ssh *:* LISTEN
tcp 0 0 *:https *:* LISTEN
udp 0 0 *:ndmp *:*
udp 0 0 *:717 *:*
udp 0 0 *:720 *:*
udp 0 0 *:mdns *:*
udp 0 0 *:sunrpc *:*
udp 0 0 *:ipp *:*
udp 0 0 *:58106 *:*
udp 0 0 mserver1:ntp *:*
udp 0 0 mserver1:ntp *:*
udp 0 0 *:ntp *:*
udp 0 0 *:47288 *:*
udp 0 0 *:mdns *:*
udp 0 0 fe80::21b:21ff:fe0b:ntp *:*
udp 0 0 localhost6.localdomain6:ntp *:*
udp 0 0 *:ntp *:*
Active UNIX domain sockets (only servers)
Proto RefCnt Flags Type State I-Node Path
unix 2 [ ACC ] STREAM LISTENING 9282 @/tmp/fam-root-
unix 2 [ ACC ] STREAM LISTENING 7490 /tmp/.font-unix/fs7100
unix 2 [ ACC ] STREAM LISTENING 9690 /tmp/.gdm_socket
unix 2 [ ACC ] STREAM LISTENING 9762 /tmp/.X11-unix/X0
unix 2 [ ACC ] STREAM LISTENING 16168 /tmp/ssh-uiYetl4932/agent.4932
unix 2 [ ACC ] STREAM LISTENING 16223 /tmp/orbit-root/linc-13b1-0-3f8de02f4b2c7
unix 2 [ ACC ] STREAM LISTENING 16232 /tmp/orbit-root/linc-1344-0-2d87867a5d05f
unix 2 [ ACC ] STREAM LISTENING 16412 /tmp/.ICE-unix/4932
unix 2 [ ACC ] STREAM LISTENING 7677 @/var/run/hald/dbus-hDNZe16wWQ
unix 2 [ ACC ] STREAM LISTENING 16421 /tmp/keyring-4Ud0fa/socket
unix 2 [ ACC ] STREAM LISTENING 16440 /tmp/orbit-root/linc-13b6-0-70ae8a3cb5ada
unix 2 [ ACC ] STREAM LISTENING 16536 /tmp/orbit-root/linc-13ca-0-287f92dd388fc
unix 2 [ ACC ] STREAM LISTENING 16561 /tmp/orbit-root/linc-13cf-0-14ac6a87f009a
unix 2 [ ACC ] STREAM LISTENING 16718 /tmp/orbit-root/linc-13d2-0-1b9f77d35a3b7
unix 2 [ ACC ] STREAM LISTENING 16734 /tmp/orbit-root/linc-13db-0-294a01a08becf
unix 2 [ ACC ] STREAM LISTENING 16763 /tmp/orbit-root/linc-13e2-0-471b6575b35fc
unix 2 [ ACC ] STREAM LISTENING 16798 /tmp/orbit-root/linc-13e6-0-c159074ca24d
unix 2 [ ACC ] STREAM LISTENING 17180 /tmp/mapping-root
unix 2 [ ACC ] STREAM LISTENING 16810 /tmp/orbit-root/linc-13e8-0-c159074cc8ab
unix 2 [ ACC ] STREAM LISTENING 16869 /tmp/orbit-root/linc-13f7-0-50d78dceb327e
unix 2 [ ACC ] STREAM LISTENING 16894 /tmp/orbit-root/linc-13fb-0-50d78dcec0145
unix 2 [ ACC ] STREAM LISTENING 16907 /tmp/orbit-root/linc-13f9-0-50d78dcec3a45
unix 2 [ ACC ] STREAM LISTENING 16957 /tmp/orbit-root/linc-13d6-0-1b9f77fb5a252
unix 2 [ ACC ] STREAM LISTENING 16981 /tmp/orbit-root/linc-13d4-0-1b9f76235a2db
unix 2 [ ACC ] STREAM LISTENING 17093 /tmp/orbit-root/linc-140e-0-1fb429ea3082
unix 2 [ ACC ] STREAM LISTENING 17158 /tmp/orbit-root/linc-141f-0-254f96ed666f6
unix 2 [ ACC ] STREAM LISTENING 17205 /tmp/orbit-root/linc-141c-0-122577cd25637
unix 2 [ ACC ] STREAM LISTENING 6623 /var/run/sdp
unix 2 [ ACC ] STREAM LISTENING 17337 /tmp/orbit-root/linc-1405-0-5a5ab5beea004
unix 2 [ ACC ] STREAM LISTENING 17375 /tmp/orbit-root/linc-140b-0-5a5ab586f0225
unix 2 [ ACC ] STREAM LISTENING 44317 /tmp/orbit-root/linc-23d3-0-71126b00e0db
unix 2 [ ACC ] STREAM LISTENING 22892 /tmp/orbit-root/linc-1a7a-0-ceda61d92493
unix 2 [ ACC ] STREAM LISTENING 22896 /tmp/gedit.root.3969415168
unix 2 [ ACC ] STREAM LISTENING 81111 /tmp/orbit-root/linc-5e08-0-29a091b24150b
unix 2 [ ACC ] STREAM LISTENING 6706 /var/run/pcscd.comm
unix 2 [ ACC ] STREAM LISTENING 6731 /var/run/acpid.socket
unix 2 [ ACC ] STREAM LISTENING 6934 /var/run/cups/cups.sock
unix 2 [ ACC ] STREAM LISTENING 20689 /var/lib/mysql/mysql.sock
unix 2 [ ACC ] STREAM LISTENING 7634 /var/run/avahi-daemon/socket
unix 2 [ ACC ] STREAM LISTENING 6173 /var/run/audispd_events
unix 2 [ ACC ] STREAM LISTENING 6540 /var/run/dbus/system_bus_socket
unix 2 [ ACC ] STREAM LISTENING 7678 @/var/run/hald/dbus-rz87o0KElZ
unix 2 [ ACC ] STREAM LISTENING 7356 /dev/gpmctl
unix 2 [ ACC ] STREAM LISTENING 16202 @/tmp/dbus-SIXP9rjQud



> iptables -L Chain INPUT (policy ACCEPT) target prot opt source destination Chain FORWARD (policy ACCEPT) target prot opt source destination Chain OUTPUT (policy ACCEPT) target prot opt source destination
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
remove ip address from remote host hedron Slackware 10 04-19-2010 11:55 PM
[SOLVED] Trying to remove ip address from the who command fangsofwhite Programming 2 10-05-2009 03:28 PM
Search for ip address in file and remove it coolplanet Programming 9 09-28-2009 03:05 AM
# yum remove dbus - trying to remove the whole system... atnonis Fedora 4 11-23-2007 06:31 AM
how can i remove an address bind sibu_rajappan Linux - Networking 0 12-24-2004 01:50 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Server

All times are GMT -5. The time now is 03:34 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration