Sponsored Content
Top Forums UNIX for Dummies Questions & Answers How to find i.p address of our server Post 28661 by cerberusofhate on Sunday 22nd of September 2002 09:49:51 PM
Old 09-22-2002
some admins (such as myself) like to chmod 000 the ifconfig utility, so try pinging a host (your IP will be displayed when you do), that usually works.
cerberusofhate
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

how to get the server name using IP address

Hi all, what is the comamnd to get the server address using the IP address ? Please help. Thanks, Sona. (3 Replies)
Discussion started by: Sona
3 Replies

2. Shell Programming and Scripting

Getting the IP address in unix server

Hi, I want to know the IP of my Unix server in my script programming. Below are the my trial and i didn't find anything useful for me.because i want only IP. hostname -> Giving the name of the server and hostanme -i -> Giving the error message that..i am not super user. ipConfig ->... (7 Replies)
Discussion started by: Balamani
7 Replies

3. AIX

How to find the router IP address

How to find the router IP address (2 Replies)
Discussion started by: AIXlearner
2 Replies

4. IP Networking

Getting IP address of a server

Hello, I have a server in C that is listening on a socket using s_addr = INADDR_ANY, and clients connect to it. How can I know which address did the client use to connect to that socket? It might be 127.0.0.1 (if the server is running locally), 192.168.x.x (if the client is from inside the... (1 Reply)
Discussion started by: royger
1 Replies

5. HP-UX

[SOLVED] HP UX SERVER IP ADDRESS

I am moving an HP UX 9000 server to a new subnet. How do I change the server's IP address?? Many thanks in advance :confused: (3 Replies)
Discussion started by: ldaliosmane
3 Replies

6. Red Hat

DHCP Server address

Where can you find your DHCP Server address? I checked all of the files that this mentioned with no luck. Quick HOWTO : Ch08 : Configuring the DHCP Server - Linux Home Networking (6 Replies)
Discussion started by: cokedude
6 Replies

7. Programming

IP address of a server at runtime

Hello, I developed a client task in C and a server task in C (an application strongly coupled). The client needs the server IP address to connect to the server. The problem is: I don't know in advance which machine will run the client and which machine will run the server so I can know the ip... (3 Replies)
Discussion started by: chercheur857
3 Replies

8. UNIX for Dummies Questions & Answers

How to Find another IP address

Hi Guys, I want to find another(Local host) machine IP address from my machine.. We are all connected in the same server, I mean same LAN. What i done is Connected with that user machine using SSH and SU.. After that i used IFCONFIG but it shows my Ip address. Can not able to get the... (8 Replies)
Discussion started by: Adhi
8 Replies

9. Red Hat

Ip address of Linux server

Hi, How to find ip address of Linux servers ? I know by ping command we can find ip address but wanted to check with you. Thanks, Maddy (5 Replies)
Discussion started by: Maddy123
5 Replies

10. Red Hat

Find DHCPv6 server's IPv6 address

I want to find out the DHCPv6 server's ip address in the network. I went through the lease files but could find only duid/server-id and not the IPv6 address of the dhcp server. And I couldn't find any commands to get that information. Is there a way to get the DHCPv6 server's IPv6 address? ... (0 Replies)
Discussion started by: bshalini
0 Replies
XAddHost(3X11)							     MIT X11R4							    XAddHost(3X11)

Name
       XAddHost, XAddHosts, XListHosts, XRemoveHost, XRemoveHosts, XSetAccessControl, XEnableAccessControl, XDisableAccessControl, XHostAddress -
       control host access and host control structure

Syntax
       XAddHost(display, host)
	  Display *display;
	  XHostAddress *host;

       XAddHosts(display, hosts, num_hosts)
	  Display *display;
	  XHostAddress *hosts;
	  int num_hosts;

       XHostAddress *XListHosts(display, nhosts_return, state_return)
	  Display *display;
	  int *nhosts_return;
	  Bool *state_return;

       XRemoveHost(display, host)
	  Display *display;
	  XHostAddress *host;

       XRemoveHosts(display, hosts, num_hosts)
	  Display *display;
	  XHostAddress *hosts;
	  int num_hosts;

       XSetAccessControl(display, mode)
	  Display *display;
	  int mode;

       XEnableAccessControl(display)
	  Display *display;

       XDisableAccessControl(display)
	  Display *display;

Arguments
       display	 Specifies the connection to the X server.

       host	 Specifies the host that is to be added or removed.

       hosts	 Specifies each host that is to be added or removed.

       mode	 Specifies the mode.  You can pass or

       nhosts_return
		 Returns the number of hosts currently in the access control list.

       num_hosts Specifies the number of hosts.

       state_return
		 Returns the state of the access control.

Description
       The function adds the specified host to the access control list for that display.  The server must be on the same host as the client issu-
       ing the command, or a error results.

       can generate and errors.

       The function adds each specified host to the access control list for that display.  The server must be on the same host as the client issu-
       ing the command, or a error results.

       can generate and errors.

       The function returns the current access control list as well as whether the use of the list at connection setup was enabled or disabled.
       allows a program to find out what machines can make connections.  It also returns a pointer to a list of host structures that were allo-
       cated by the function.  When no longer needed, this memory should be freed by calling

       The function removes the specified host from the access control list for that display.  The server must be on the same host as the client
       process, or a error results.  If you remove your machine from the access list, you can no longer connect to that server, and this operation
       cannot be reversed unless you reset the server.

       can generate and errors.

       The function removes each specified host from the access control list for that display.	The X server must be on the same host as the
       client process, or a error results.  If you remove your machine from the access list, you can no longer connect to that server, and this
       operation cannot be reversed unless you reset the server.

       can generate and errors.

       The function either enables or disables the use of the access control list at each connection setup.

       can generate and errors.

       The function enables the use of the access control list at each connection setup.

       can generate a error.

       The function disables the use of the access control list at each connection setup.

       can generate a error.

Structures
       The structure contains:

       typedef struct {
	 int family;	   /* for example FamilyInternet */
	 int length;	   /* length of address, in bytes */
	 char *address;    /* pointer to find the address */
       } XHostAddress;

       The family member specifies which protocol address family to use (for example, TCP/IP or DECnet) and can be or The length member specifies
       the length of the address in bytes.  The address member specifies a pointer to the address.

Diagnostics
       A client attempted
		 to modify the access control list from other than the local (or otherwise authorized) host.

       Some numeric value falls outside the range of values accepted by the request.
		 Unless a specific range is specified for an argument, the full range defined by the argument's type is accepted. Any argument
		 defined as a set of alternatives can generate this error.

See Also
       XFree(3X11)
       X Window System: The Complete Reference, Second Edition, Robert W. Scheifler and James Gettys

																    XAddHost(3X11)
All times are GMT -4. The time now is 03:51 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy