Getting the IP address in unix server


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Getting the IP address in unix server
# 8  
Old 07-03-2008
Quote:
Originally Posted by Balamani
I am able to get the IP of my server from command prompt, but when i put the same in my script its give the output has hostname.


#!/usr/bin/bash
SERVER_IP=`grep -w `hostname` /etc/hosts | awk '{print $1}'`
echo $SEREVR_IP

Why ?
You can't nest backquotes (the shell has no way of knowing which ones are inside others, i.e. it sees `grep -w ` as one set, and ` /etc/hosts | awk '{print $1}'` as another set. That's why it's safer to use the $( command ) syntax:

Code:
#!/usr/bin/bash
SERVER_IP=$(grep -w $(hostname) /etc/hosts | awk '{print $1}')
echo $SEREVR_IP

Quote:
Originally Posted by majormark
var1=`netstat -in | grep bge0 | awk '{ print $4 }'`
No need for grep and awk:

Code:
var1=`netstat -in | awk '/bge0/ { print $4 }'`

Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Post Here to Contact Site Administrators and Moderators

VIP Membership - The UNIX and Linux Forums - Get Your UNIX.COM Email Address Here

We work hard to make The UNIX and Linux Forums one of the best UNIX and Linux knowledge sources on the net. The site is certainly one of the top UNIX and Linux Q&A sites on the web. In order to provide certain members the best quality account services, you can now get some great extra features by... (2 Replies)
Discussion started by: Neo
2 Replies

2. 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

3. 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

4. Shell Programming and Scripting

Find and delete files and folders which are n days older from one unix server to another unix server

Hi All, Let me know how can i find and delete files from one unix server to another unix server which are 'N' days older. Please note that I need to delete files on remote unix server.So, probably i will need to use sftp, but question is how can i identify files and folders which are 'N'... (2 Replies)
Discussion started by: sachinkl
2 Replies

5. 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

6. 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

7. HP-UX

Sending msg From Unix Server to an E-mail Address

Dear Brothers in Unix I would like to change some HP-UX settings in order that the system send a message to root it should be copied to my e-mail address in Microsoft Exchange Server. Please can you help me. Best Regards and thanks in advance Gege (2 Replies)
Discussion started by: cgege
2 Replies

8. 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

9. UNIX for Dummies Questions & Answers

How to find i.p address of our server

I don't have root access. How do I find i.p address of our sun server? Thanks. (4 Replies)
Discussion started by: vpotluri
4 Replies

10. IP Networking

Changing Ip Address On Hp 700 Server Using Unix.

How do you change the ip address on a server using Unix?:) (1 Reply)
Discussion started by: SAVDBYHIM
1 Replies
Login or Register to Ask a Question