Hi,
I'm running a script to bring down the logical ip address . But if the system doesnt have that logical ip addresss then i get the following error print on terminal -

SIOCSIFFLAGS: Cannot assign requested address

I just want to know whether there is a way to suppress that print so that user is not aware of that.
May be some check before pulling down the logical ip.

the script file content is -

ifconfig eth0:1 down

is there any syntax by which i can check whether eth0:1 is up or not .
My purpose is not to show the user that error msg and i wanna do it from the script file itself not modify some system files as i wouldnt know on which (linux) system the user will be excuting that script.

You can send error output to some specific location (usually, /dev/null) So something like:
ifconfig eth0:1 down 2>/dev/null
That will prevent error messages from being printed but will still allow any other output to be printed to the screen.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.