Assigning Temp IP inside zones


 
Thread Tools Search this Thread
Operating Systems Solaris Assigning Temp IP inside zones
# 1  
Old 07-06-2009
Assigning Temp IP inside zones

I want to assign ip to a zone , but i dont want that ip to be retained when the zone is rebooted , is there a way to do it ?


Thx
# 2  
Old 07-07-2009
You have to remove the zone IP before it is rebooted. You can do it via a script before your actual reboot etc
# 3  
Old 07-07-2009
You can also control a zone IP from the global zone with the ifconfig command. i.e. boot the zone without an IP set then add it dynamically.
# 4  
Old 07-07-2009
Are you assigning the IP to some physical interface or virtual interface? If you simply assign the IP with the help of ifconifig and if you do not place the entry into the /etc/hosts then next time when zone is going to start it shouldn’t take the IP
# 5  
Old 07-07-2009
kumarmani: the OP is using Solaris zones. Only virtual interfaces are supported (this changed very recently but I doubt it's the case here).
They are normally configured, including IP settings, using zonecfg, not ifconfig.
/etc/hosts is never used to automatically configure a zone IP.
# 6  
Old 07-07-2009
Quote:
Originally Posted by kumarmani
Are you assigning the IP to some physical interface or virtual interface? If you simply assign the IP with the help of ifconifig and if you do not place the entry into the /etc/hosts then next time when zone is going to start it shouldn't take the IP
Not true Kurmani!As long as zonecfg was used to create the IP virtually, /etc/hosts will not come into picture with zones as you think so.. Smilie
# 7  
Old 07-07-2009
Yes, i missed the point. What happen if you later remove the IP from the zone xml file, which keep the configuration from /etc/zones/<zone name>.xml and delete the IP from <network address="172.24.2.157" physical="bge0"/>
------------------------------------------------------

We can not leave the network address blank, zone will not able to boot, but we can replace this with some ip like 0.0.0.0. and once we are inside the zone we can change it to the require IP . Isn't?

Last edited by kumarmani; 07-07-2009 at 07:55 AM..
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Solaris

temp dir

Hello everyone, I need to install a large program,it makes error change directory to another ,can anyone tell me how? Respectfully, Reham (17 Replies)
Discussion started by: Reham.Donia
17 Replies

2. UNIX for Advanced & Expert Users

couting occurences of a character inside a string and assigning it to a variable

echo "hello123" | tr -dc '' | wc -c using this command i can count the no of times a number from 0-9 occurs in the string "hello123" but how do i save this result inside a variable? if i do x= echo "hello123" | tr -dc '' | wc -c that does not work...plz suggest..thanks (3 Replies)
Discussion started by: arindamlive
3 Replies

3. Shell Programming and Scripting

Need help in assigning output of n commands to n variables automatically inside a for loop

Please help me to automatically assign the output of awk command to the variables cs3, cs4, cs5 and cs6 using a for loop. The below code is not working. for i in 3 4 5 6 do cs$i=`awk -F"|" 'BEGIN{sum=0}{sum=sum+$'$i'}END{printf("%d\n", sum)}' css` done echo $cs3 $cs4 $cs5 $cs6 (9 Replies)
Discussion started by: thulasidharan2k
9 Replies

4. Infrastructure Monitoring

temp monitoring via SNMP

Hi, I am trying to monitor temperature of telecom devices of avaya and polycom. I have setup SNMP. can somebody help me to know what are the requirements to have a SNMP command working for this thanks in advance (1 Reply)
Discussion started by: Subhash Chauhan
1 Replies

5. Shell Programming and Scripting

problem in assigning substr to a variable inside awk

Hi All, I have a fixed-width datafile from which i need to extract value/string starting from some position to the specified length in each of the lines. awk '{print substr($0,x,y)}' datafile --- is working fine but awk 'BEGIN{a=0}{a=substr($0,x,y);print $a}' datafile ---is giving... (3 Replies)
Discussion started by: loggedin.ksh
3 Replies

6. Shell Programming and Scripting

temp files

Hi there, As a regular unix user I am forever programming on the command line or writing scripts so that I first write a load of data to a file to read from. In the end I am always left with a bundle of .txt, .tmp which is what I usually call them. As a basic programmmer I was wondering is... (6 Replies)
Discussion started by: cyberfrog
6 Replies

7. Solaris

what is ideal temp for US-III+

Hi all, is it okay for US-III+ running at 1200 MHZ to excced 75° C on sun fire 880 here's the output when i ran prtdiag -v on sunfire 880 running solaris10 bash-3.00# prtdiag -v System Configuration: Sun Microsystems sun4u Sun Fire 880 System clock frequency: 150 MHz Memory size: 8192... (2 Replies)
Discussion started by: h@foorsa.biz
2 Replies

8. AIX

/temp full

i have an aix5.3 box with a full /tmp. i emptied the tmp directory and still doesnt change from 100%. if i try to increase the /tmp size it keeps on wanting me to delete more files in the directory. what can i do.i'm still learning aix (3 Replies)
Discussion started by: freeman
3 Replies

9. Shell Programming and Scripting

How to avoid a temp file

Hi all. I want to check the free space on a given FS and process the output. Right now, I'm using a temp file to avoid using df twice. This is what I'm doing #!/usr/bin/ksh ... df -k $FS_NAME > $TMP_FILE 2>&1 if ]; then RESULT="CRITICAL - $(cat $TMP_FILE)" else cat $TMP_FILE | ...... (3 Replies)
Discussion started by: fox1212
3 Replies

10. Shell Programming and Scripting

Assigning inside for loop

If I have 3 variables and I want to check if any of these is null. If one of them is null then it should be assigned a value of 0.I have the following code below. The output should be 0 is A, 11 is B, 33 is C $a= $b=11 $c=33 $echo $a $b $c $11 33 for i in "${a}" "${b}" "${c}"; do ... (2 Replies)
Discussion started by: thana
2 Replies
Login or Register to Ask a Question