IFCONFIG is available... sort of


 
Thread Tools Search this Thread
Operating Systems Solaris IFCONFIG is available... sort of
# 1  
Old 08-03-2012
IFCONFIG is available... sort of

So, I have this script that makes a call to ifconfig to pull the interface information and report it. When I log on to the machine the script works just fine. But, if I'm on a remote machine and I make a call like this.
Code:
ssh user@server ./script.bash

I get an error saying that the IFCONFIG command is unavailable. Smilie No idea why.

Everything is being run as a user. Naturally, root ssh is disabled.
# 2  
Old 08-03-2012
What, exactly, does it say?

It's probably just not in your PATH. See 'whereis ifconfig' to find out where it's hiding on that system.
# 3  
Old 08-03-2012
Quote:
Originally Posted by Corona688
What, exactly, does it say?

It's probably just not in your PATH. See 'whereis ifconfig' to find out where it's hiding on that system.

Code:
 
./sysinfo.bash: line 30: ifconfig: command not found

I also got the same error when I supplied the full path. I'd supply the script, but it's it's on a seperate network and I can't transfer the script to public domain.

The full path is /usr/sbin/ifconfig. And it runs fine if I do an actual login.

Last edited by Binary Buddha; 08-03-2012 at 06:44 PM.. Reason: forgot stuff
# 4  
Old 08-03-2012
Quote:
Originally Posted by Binary Buddha
I also got the same error when I supplied the full path.
Did you check the full path on the remote system, though? It might be a different full path on your remote system than your local one.
Quote:
The full path is /usr/sbin/ifconfig. And it runs fine if I do an actual login.
See, mine is /sbin/ifconfig. /usr/ seems a bit odd to me.
# 5  
Old 08-03-2012
Quote:
Originally Posted by Corona688
Did you check the full path on the remote system, though? It might be a different full path on your remote system than your local one. See, mine is /sbin/ifconfig. /usr/ seems a bit odd to me.
Yes, I did. I modified the script on the remote machine to point to /usr/sbin/ifconfig which is where it's located. I don't have whereis so I used which. Which is pretty much the same. It's Solaris 10 on a sparc Netra-T5220.
# 6  
Old 08-03-2012
Well then, check for typos or special characters like carriage returns in the file.
# 7  
Old 08-03-2012
Quote:
Originally Posted by Corona688
Did you check the full path on the remote system, though? It might be a different full path on your remote system than your local one. See, mine is /sbin/ifconfig. /usr/ seems a bit odd to me.
Older Solaris releases used to provide two different ifconfig binaries, one in /sbin and the other in /usr/sbin, with a slightly different behavior regarding the name service resolution order.
Recent releases have /usr/sbin/ifconfig being just a symbolic link to /sbin/ifconfig.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Solaris

Ifconfig command ?

What would be the command to remove the IP address from an interface? I want to remove the ip from this interface: ce3: flags=1000803<UP,BROADCAST,MULTICAST,IPv4> mtu 1500 index 5 inet 155.216.13.74 netmask fffffff0 broadcast 155.216.13.79 ether 0:3:ba:da:a6:96 (3 Replies)
Discussion started by: Kjons76
3 Replies

2. Shell Programming and Scripting

not able to run ifconfig

Unable to run the ifconfig in my home dir.. I did add adding /sbin and /usr/sbin in th PATH But still unable to get that .. Am using red hat linux cat /etc/redhat-release Red Hat Enterprise Linux Server release 5.3 (Tikanga) (3 Replies)
Discussion started by: mail2sant
3 Replies

3. Linux

ifconfig - information

Hi All, I need some info on ifconfig. ifconfig is available in Linux and Solaris. However the options available in Solaris is not there in Linux. 1. ifconfig -a == output is different in both OS. I am somewhat able to compare the output. But one thing I am not getting is after the flags... (2 Replies)
Discussion started by: ahamed101
2 Replies

4. IP Networking

ifconfig problem

Hi all, I am getting some error messages during bootup ifconfig :<hostname> bad address and some more messages related to it. I some how checked the /etc/hostanem.hme0 /etc/hosts file. Entries in these files were proper. If I am running the following command from root: ... (5 Replies)
Discussion started by: amit_sapre
5 Replies

5. UNIX for Dummies Questions & Answers

ifconfig and ipconfig

hey, I know that ifconfig on linux systems is identical to win ipconfig. I wanted to know if there is a linux distribution (new or old) that uses the ipconfig command. thanks alot :) (2 Replies)
Discussion started by: tsmotix
2 Replies

6. Shell Programming and Scripting

ifconfig!!!!

why the ifconfig command is not working in my machine? it says "-bash: ifconfig: command not found" why its says that? actually i m looking for "how can I know the Network Interface Card physical address?" Requesting u all for help. thanks (3 Replies)
Discussion started by: moco
3 Replies

7. OS X (Apple)

ifconfig

Hi, I type (as root) "ifconfig en1 ether aa:aa: " but it doesnt change the mac of my airport. Can anyone help me? Thx. (0 Replies)
Discussion started by: Jariya
0 Replies

8. UNIX for Dummies Questions & Answers

ifconfig

I am trying to change an IP address on a machine running HPUX10 After I change it I can ping it from the outside but it completely locks the console. After a reboot it returns back to its previous IP. Any ideas?? Thanks Brian (7 Replies)
Discussion started by: breigner
7 Replies

9. HP-UX

HP-UX ifconfig question.

This will most likely be a real dumb question for a HP-UX admin, but here it goes anyhow. lan0 - is up and configured lan1 - is down, I want to bring it up. lanconfig....ifconfig is there a difference? My real question is, in solaris there is an /etc/hostname."?" file, is there a... (4 Replies)
Discussion started by: viRaven
4 Replies

10. UNIX for Dummies Questions & Answers

Why do I have to cd into /sbin to get to ifconfig?

I have to cd into /sbin in order to use ifconfig to check out my network cards. This has only started to happen since I downloaded the last update from RedHat(The machine runs RedHat 8.0). Does anyone know what happened? More importantly, are there any sources that can help me with this... (3 Replies)
Discussion started by: Jody
3 Replies
Login or Register to Ask a Question