Network config question: Transfer IP/s from one server to another

Both server running Solaris 8:
SERVERA: $ ifconfig -a
lo0: flags=1000849<UP,LOOPBACK,RUNNING,MULTICAST,IPv4> mtu 8232 index 1
inet 127.0.0.1 netmask ff000000
hme0: flags=1000863<UP,BROADCAST,NOTRAILERS,RUNNING,MULTICAST,IPv4> mtu 1500 index 2
inet 10.36.19.132 netmask ffffff00 broadcast 10.36.19.255
hme0:1: flags=1000863<UP,BROADCAST,NOTRAILERS,RUNNING,MULTICAST,IPv4> mtu 1500 index 2
inet 10.36.19.136 netmask ffffff00 broadcast 10.36.19.255
hme0:2: flags=1000863<UP,BROADCAST,NOTRAILERS,RUNNING,MULTICAST,IPv4> mtu 1500 index 2
inet 10.36.19.168 netmask ffffff00 broadcast 10.36.19.255
hme0:3: flags=1000863<UP,BROADCAST,NOTRAILERS,RUNNING,MULTICAST,IPv4> mtu 1500 index 2
inet 10.36.19.148 netmask ffffff00 broadcast 10.36.19.255
hme0:4: flags=1000863<UP,BROADCAST,NOTRAILERS,RUNNING,MULTICAST,IPv4> mtu 1500 index 2
inet 10.36.19.145 netmask ffffff00 broadcast 10.36.19.255
hme0:5: flags=1000863<UP,BROADCAST,NOTRAILERS,RUNNING,MULTICAST,IPv4> mtu 1500 index 2
inet 10.36.19.147 netmask ffffff00 broadcast 10.36.19.255
qfe1: flags=1000863<UP,BROADCAST,NOTRAILERS,RUNNING,MULTICAST,IPv4> mtu 1500 index 3
inet 140.20.140.132 netmask ffffffc0 broadcast 140.20.140.191
qfe1:1: flags=1000863<UP,BROADCAST,NOTRAILERS,RUNNING,MULTICAST,IPv4> mtu 1500 index 3
inet 140.20.140.148 netmask ffffffc0 broadcast 140.20.140.191
qfe1:2: flags=1000863<UP,BROADCAST,NOTRAILERS,RUNNING,MULTICAST,IPv4> mtu 1500 index 3
inet 140.20.140.136 netmask ffffffc0 broadcast 140.20.140.191
qfe1:3: flags=1000863<UP,BROADCAST,NOTRAILERS,RUNNING,MULTICAST,IPv4> mtu 1500 index 3
inet 140.20.140.168 netmask ffffffc0 broadcast 140.20.140.191
qfe1:4: flags=1000863<UP,BROADCAST,NOTRAILERS,RUNNING,MULTICAST,IPv4> mtu 1500 index 3
inet 140.20.140.144 netmask ffffffc0 broadcast 140.20.140.191
qfe1:5: flags=1000863<UP,BROADCAST,NOTRAILERS,RUNNING,MULTICAST,IPv4> mtu 1500 index 3
inet 140.20.140.142 netmask ffffffc0 broadcast 140.20.140.191
qfe1:6: flags=1000863<UP,BROADCAST,NOTRAILERS,RUNNING,MULTICAST,IPv4> mtu 1500 index 3
inet 140.20.140.146 netmask ffffffc0 broadcast 140.20.140.191
qfe1:7: flags=1000863<UP,BROADCAST,NOTRAILERS,RUNNING,MULTICAST,IPv4> mtu 1500 index 3
inet 140.20.140.143 netmask ffffffc0 broadcast 140.20.140.191
qfe1:8: flags=1000863<UP,BROADCAST,NOTRAILERS,RUNNING,MULTICAST,IPv4> mtu 1500 index 3
inet 140.20.140.147 netmask ffffffc0 broadcast 140.20.140.191
qfe1:9: flags=1000863<UP,BROADCAST,NOTRAILERS,RUNNING,MULTICAST,IPv4> mtu 1500 index 3
inet 140.20.140.155 netmask ffffffc0 broadcast 140.20.140.191
qfe1:10: flags=1000863<UP,BROADCAST,NOTRAILERS,RUNNING,MULTICAST,IPv4> mtu 1500 index 3
inet 140.20.140.157 netmask ffffffc0 broadcast 140.20.140.191
qfe1:11: flags=1000863<UP,BROADCAST,NOTRAILERS,RUNNING,MULTICAST,IPv4> mtu 1500 index 3
inet 140.20.140.145 netmask ffffffc0 broadcast 140.20.140.191
SERVERB$ ifconfig -a
lo0: flags=1000849<UP,LOOPBACK,RUNNING,MULTICAST,IPv4> mtu 8232 index 1
inet 127.0.0.1 netmask ff000000
hme0: flags=1000863<UP,BROADCAST,NOTRAILERS,RUNNING,MULTICAST,IPv4> mtu 1500 index 2
inet 10.36.19.164 netmask ffffff00 broadcast 10.36.19.255
qfe1: flags=1000863<UP,BROADCAST,NOTRAILERS,RUNNING,MULTICAST,IPv4> mtu 1500 index 3
inet 140.20.140.164 netmask ffffffc0 broadcast 140.20.140.191
qfe2: flags=1000863<UP,BROADCAST,NOTRAILERS,RUNNING,MULTICAST,IPv4> mtu 1500 index 4
inet 11.11.11.2 netmask ffffff00 broadcast 11.11.11.255
qfe3: flags=1000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4> mtu 1500 index 5
inet 10.36.29.164 netmask ffffff00 broadcast 10.3.29.255
qfe6: flags=1000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4> mtu 1500 index 6
inet 11.11.10.2 netmask ffffff00 broadcast 11.11.10.255
What is involved to transfer the IPs 10.36.19.145 (hme0:3:) and 140.20.140.142 (qfe1:#:) to serverB?
Would that cause a lost of network connection to either 10.36.19.132 or 140.20.140.132 on SERVERA
Would that require a reboot?
Thank you.

[[[What is involved to transfer the IPs 10.36.19.145 (hme0:3:) and 140.20.140.142 (qfe1:#:) to serverB?]]]
NIC configs are created using a combination of /etc/hosts | /etc/inet/ipnodes and /etc/hostname.<nic instance> files when system is booting up.
In order to permanantly remove an IP from a host's interface (say hme0:3)
you would have to do the following:
NOTE: Don't run this on Solaris 7 or below -- unplumbing a virtual interface in Solaris 7 or below will unplumb the actual physical instance as well!!
ifconfig hme0:3 down
ifconfig hme0:3 unplumb
Remove entry corresponding to the IP that was set up on hme0:3 from /etc/hosts and/or /etc/inet/ipnodes
remove /etc/hostname.hme0:3In order to reverse the process (or set up the IP on another host), just reverse the steps. Make entries in /etc/hosts and/or /etc/inet/ipnodes, /etc/hostname.<nic instance> (insert hostname corresponding to IP from /etc/hosts in this file).
ifconfig hme0:3 plumb
ifconfig hme0:3 <ip> netmask + broadcast + up[[[Would that cause a lost of network connection to either 10.36.19.132 or 140.20.140.132 on SERVERA
Would that require a reboot? ]]]
Make sure to turn off any service that might be tied into that IP address on server A. Otherwise you'll have a loss of service. For eg: if you have an apache instance that's bound to that IP address, make sure you make adjustments/corrections or turn it off before you unplumb your interface).
You don't have to necessarily reboot to make this happen. Just make sure you don't leave any stone unturned...

Similar Messages

  • Transfer executable report from one server to another

    hi all,
           How to transfer executable report from one server to another?
    please reply fast
    its urgent
    thnx in advance

    Kush,
    To transfer a object from one server to another server it should be assigned to a package ie Dev Class so that a transport request can be created.Once the request is created we will release it using SE09 and then ask the basis consultant to move the request from Dev to Quality and then Dev to Production.
    $TMP objects are called as local objects and can't  be transported.
    K.Kiran.

  • If i transfer some records from one server to another server,

    hi to all......
    5........If i transfer some records from one server to another server, will that save in change request or work bench request?
    thanks and regards,
    k.swaminath

    Hi friend my suugession is , if u r transfering records from one client to another or changing anything in the active pgm, it will save under  change request...
    But if u r transfering records from one server to server it will save under work bench request...

  • How to transfer the files from one server to another through pl/sql...?

    I want to transfer all the files from source server with respective directory to designation server with respective directory (designation server - oracle reside server).
    Is it possible to ftp from one server to another server(designation server - oracle reside server) through pl/sql. these two servers are independent & unix server.

    No ... The package mentioned in
    http://www.oracle-base.com/dba/miscellaneous/ftp.pks
    this works for across the server i.e. transfer the files from one server to other (it is basically ftp) ..
    So it is NOT correct that this code transfer the file between two location & with in server..

  • How to transfer ABAP query from one server to another server

    Hi all,
    I have a ABAP query in development server and i need to transport it to production server.
    I have attached a transaction to it using the program which got generated in the back ground
    from the abap query in the developemnt server.
    I have downloaded and uploaded  a ABAP query from one server to another server.
    But the program which got generated in the back ground in the production server is different from
    program which is generated in the development server.
    But my transaction is attached to the program in the development server.If i transport the transaction
    to production server,it is giving error since that program is not present in the production server.
    Am i going in the right way......? 
    Is there any problem in my upload/download procedure ?
    Is there any way to achieve my purpose ...............?
    Please kindly reply me at the earliest.

    You have different ways to call a query using a t.code. One way is to create a pgm with the following code and attach a t-code to it.
    data: gv_test type sy-repid.
    DATA: GV_USERGROUP TYPE AQADEF-BGNAME VALUE 'FI',
          GV_QUERY TYPE AQADEF-QUNAME VALUE 'ZCON_FI_QUERY',
          GV_RNAME TYPE AQADEF-PGNAME .
    CALL FUNCTION 'RSAQ_REPORT_NAME'
      EXPORTING
        WORKSPACE        = ''
        USERGROUP        = GV_USERGROUP
        QUERY            = GV_QUERY
    IMPORTING
       REPORTNAME       = GV_RNAME
    * For the dynamic excution of the called query assisgn GV_RNAME to <gv_test>.
    gv_test = GV_RNAME.
    SUBMIT (gv_test) via selection-screen and return.
    Alternate way is while creating T-Code you choose option Transaction with parameters.
    Transaction as START_REPORT and in default values table control at bottom give as follows
    D_SREPOVARI-REPORTTYPE = AQ
    D_SREPOVARI-REPORT = User group
    D_SREPOVARI-EXTDREPORT = Your Query name
    Regards
    Sathar

  • Transfer RDS CALS from one server to another

    I have installed Remote Desktop licensing on Server1 and activated 20 RDSCALS.
    Now i want to move these licenses to another server. What are steps do i need to follow. Is there any product code required to do the same?

    Hi,
    I don't think only name and address is enough, however, I recommend you call the Clearinghouse and see if they can help.
    In the case of lost licensing I have had resellers re-send the licensing confirmation.  Doing research with the accounting department of the customer to track down the reseller, original invoice, etc. is also helpful.
    Locate the Microsoft Clearinghouse Telephone Number for Your Country or Region
    http://technet.microsoft.com/en-us/library/cc754874.aspx
    -TP

  • Moving a Company from one server to another server

    Dear All,
    I have gone through all the SBO SDN Threads (related to SBO-Common) to know the role of SBO-Common data base in SAP B1, but the following case is still not clear to me. Please help.
    Suppose I have two SBO servers (of same settings) as follows u2013
    Server1:
    Database                Company
    SBO-Common          N/A
    SAP_Abc_Co          Abc Co.
    Server2:
    Datebase               Company
    SBO-Common          N/A
    SAP_Xyz_Co          Xyz Co.
    Now I want to transfer the above said Xyz Co (database-SAP_Xyz_Co) from Server2 to the Server1 (keeping all other companies in Sever1 intact). How to do it?

    SBO-Common, also acts as the license server.
    To transfer a company from one server to another you can do like Steffen said.
    You don't need to backup SBO-Common.
    Dan Souza - EasyOne Consulting
    [www.easyone.com.br|http://www.easyone.com.br/]

  • Moving Files from one server to another

    How i can move different files / Oracle reports from one server to another...
    secondly , if i want to access Oracle Discoverer reports from new server , either i need to install Discoverer on it or not...If yes how i can install & configur it?

    Need guide lines to transfer Oracle reports from one server to another ....Need help...Working on Unix environment....
    Forward me commnads to move data...please

  • How do i transfer iTunes money from one account to another

    how do i transfer iTunes money from one account to another? also forgot security question answers

    You can't, an account's balance cannot be transferred to another account, nor can it be used to gift content to another account - it can only be used to buy content for the account that it's on.
    For your security questions, if you have a rescue email address (which is not the same thing as an alternate email address) on your account then you can use that to reset them : http://support.apple.com/kb/HT6170
    If you don't have a rescue email address (you won't be able to add one until you can answer your questions) then you will have to contact Support in your country to get the questions reset.
    Contacting Apple about account security : http://support.apple.com/kb/HT5699
    If your country isn't on that page then try this form and explain and see what they reply with : https://ssl.apple.com/emea/support/itunes/contact.html
    When they've been reset, and if you don't already have a rescue email address, you can then add one for potential future use : http://support.apple.com/kb/HT5620
    Or, if it's available in your country, you could change to 2-step verification : http://support.apple.com/kb/HT5570

  • HT4527 I am trying to transfer music files from one PC to another using homeshare and although I can view the music as a shared folder I cannot initiate the "import" process.  I have iTunes 11.0.1.12 on both computers so the help screenshots do not help a

    I am trying to transfer music files from one PC to another using homeshare and although I can view the music as a shared folder I cannot initiate the "import" process.  I have iTunes 11.0.1.12 on both computers so the help screenshots do not help as such

    Then stop trying to use HomeShare and use one of the other options listed in the document from which your question was posted.

  • How to transfer Lightroom settings  from one catalog to another?

    Lightroom 5. I have combined two catalogs into one "Master Catalog" per Julian Kosts tutorial ( http://tv.adobe.com/watch/adobe-evangelists-julieanne-kost/lr3-merging-individual-lightroo m-catalogs-into-a-master-catalog-/ ) without incident. However, my presets are not to be found. Could there be other issues? How Do I properly get these presets into my Master Catalog?
    How to transfer Lightroom settings  from one catalog to another?

    Nevermind.
    Per the turorials, this is suppose to occur automatically.
    In the rare event that it does not, forced by lack of support through Adobe or the forums, I am relagated to resolve my problem the old fasjion way. Guessing at a solution of dragging and dropping (risking overwritting current the newer LR5 files (careful now).
    I love the product but trying to get problem resolution here has been disapointing.
    I'd like to retract this entire question session.

  • How to transfer iweb files from one mac to another?

    How to transfer iweb files from one mac to another?
    I have a macbookpro, and I am planing to transfer my iweb data to a new imac, is this possiable and will everything transfer over properly? Will I have problems doing this and how can i do this?

    thank you very much!
    another question,
    if i were to use mobil me to publish my site (at this time i use ftp) will i have the ability to have an outside programer log into my mobil me account and adjust things around in my html codes or add things to my site without iweb? at this time i use ftp and transfer my files from cyberduck to my hosting company. I am new and not very firmilure with the files in my hosting company, so i have help sometimes from a programer that fixes my html codes sometimes for example this page of my site i had someone help me with...
    http://www.sylvartfloraldesigns.com/SylvartFloral_Designs/ScheduleConsultation.html
    will i have the option to do this through mobil me and have someone help me from an outside source, log into my mobil me account and have them adjust things for me?

  • How do you transfer digital booklets from one PC to another PC?

    how do you transfer digital booklets from one PC to another PC?

    Hi Purple Cow,
    Welcome to Apple Discussions.
    The following User Tip will guide you through the procedure step by step:
    http://discussions.apple.com/thread.jspa?threadID=121751
    If you have further questions regarding iTunes for Windows you're better off posting the question in the iTunes for Windows forum which can be found here:
    http://discussions.apple.com/category.jspa?categoryID=150
    Simply pick an appropriate forum from the "Forum/Category" section and post your question.
    Good luck.
    RD

  • How can i transfer my music from one account to another on a different computer?

    So i have an itunes account on dell laptop and i share that account with other famliy members. I recently bought a mac pro and wanted to create a new account that way i can use icloud, is there any possible way to transfer everything from my old library to my new one or will i lose everything i had on my phone and ipods? Or is it possible to have one account but multiple icloud accounts?

    lisafromwindermere wrote:
    I want to start my own account separate from my parents. Can I transfer my music from one account to another? If so, how?
    Lisa,
    Just get copies of the song files and add them to your iTunes library.  With the exception of any DRM-protected files (purchased before mid-2009 and never upgraded) they will play fine, even though they are technically associated with the original account.

  • Can i transfer my backup from one laptop to another?

    I have my backup of apps and music stored in one laptop's iTunes account, how can I transfer my backup from one laptop to another?

    iTunes downloads are not stored in a backup (that contains documents, files, camera roll photos, app content/settings etc), neither are the contents of the device's Music and Videos apps - instead a restore would look to pick up your music, films, apps etc from your iTunes library.
    Your backups are stored under :
    Mac: ~/Library/Application Support/MobileSync/Backup/
    The "~" represents your Home folder. If you don't see Library in your Home folder, hold Option and click the Go menu.
    Windows Vista, Windows 7, and Windows 8: \Users\(username)\AppData\Roaming\Apple Computer\MobileSync\Backup\
    To quickly access the AppData folder, click Start. In the search bar, type %appdata%, then press Return.
    Windows XP: \Documents and Settings\(username)\Application Data\Apple Computer\MobileSync\Backup\
    To quickly access the Application Data folder, click Start, then choose Run. In the search bar, type %appdata%, then click OK.
    You will need to copy the entire backup directory and copy it into the relevant directory on your other laptop - it should then automatically be picked up by that computer's iTunes and show on the Devices tab in Edit > Preference (iTunes > Preferences on a Mac) on it.
    To copy your iTunes library between computers : How to move your iTunes library to a new computer.
    You can also use home sharing to copy content between computers : iTunes: Setting up Home Sharing on your computer.

Maybe you are looking for