Removing temporary alias


 
Thread Tools Search this Thread
Operating Systems AIX Removing temporary alias
# 1  
Old 09-04-2007
Removing temporary alias

I found a syntax for adding temporary alias to an interface:

ifconfig en0 192.168.1.3 netmask 255.255.255.0 alias

But I can't find a command to remove it.
Could it be that I only need to add - before alias?

Tnx!
# 2  
Old 09-04-2007
if you need to delete alias, use this command

ifconfig en0 192.168.1.3 netmask 255.255.255.0 delete
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. Programming

Storing a Temporary File Using C

How would someone save a file such as /etc/vpnc/test.conf locally into a temp file, so it can be queried? So for example if I used rsync to copy this file locally, how would I add that to a temp_file variable and discard it using unlink? #include <stdio.h> #include "error.h" ... (15 Replies)
Discussion started by: metallica1973
15 Replies

2. Solaris

Temporary disable of users

HI Gurus can I temporary disable users to connect to Solaris, need help Regards (3 Replies)
Discussion started by: smazshah
3 Replies

3. UNIX for Dummies Questions & Answers

Create alias files (not alias commands)

If one: $ find -name 'some expression' -type f > newfile and then subsequently wants to create an alias file from each pathname the find command retrieved and the > placed within 'newfile', how would one do this? Ideally, the newly created alias files would all be in one directory. I am... (3 Replies)
Discussion started by: Alexander4444
3 Replies

4. Shell Programming and Scripting

Rsync temporary files

Hi, I am looking to use rsync in a very specific way, and even though I have trawled the rsync man pages I have not succeeded in seeing a way of doing the following: The temporary files created by rsync should not be created in the destination directory. (I have used --temp-dir option to... (0 Replies)
Discussion started by: LostInTheWoods
0 Replies

5. UNIX for Dummies Questions & Answers

Ping temporary off and down

We have a sun server which when pinged temporarily responds and sometimes dont respond. Which problems may it is facing? (1 Reply)
Discussion started by: eelinker
1 Replies

6. Solaris

temporary modification of date

Goodmorning, I have a server with solaris 2.6 installed. Is it possible modify system date only temporary that, automatically, after a reboot, I can have again the date after the temporary mofication? I don't want to use "date" command after reboot for tidy up date. I only want to find a... (2 Replies)
Discussion started by: bonovox
2 Replies

7. Shell Programming and Scripting

Temporary files and rm

Hello everyone, I am creating a temporary file in my ksh by using something file filetemp=filetemp.$$ Later on in my script I write to the file $filetemp by 'cat'ing to it. Then in the script I am doing a 'less' on the file to view it. At the end of the script I issue a rm $filetemp 2>... (4 Replies)
Discussion started by: gio001
4 Replies

8. Shell Programming and Scripting

remove temporary file ?

Hi all, In the script I am creating a temporary file with process id as temp.txt.$$ I want to remove this tomporary file first from the current directory when i'll run the same script next time. Note: Every time when the script executes then it has unique process id and it'll create a... (5 Replies)
Discussion started by: varungupta
5 Replies
Login or Register to Ask a Question