Xserve Changing IP Addresss

I have an old Xserve used purely for files and images. It has an existing static IP address on one of the 2 internal Ethernet cards, i.e. 217.xx.xxx.xx. Used to work fine and had connection to this server from all over the world when travelling.
Problem is that I have changed the ISP who provided me with this IP address and now have another IP address, 135.xxx.xx.xx. I can't change the existing one, as when I do I lose all connections to the server, even from work.
Any help greatly appreciated.
Thanks
JJ
Powerbooks Aluminium 1.33   Mac OS X (10.4.8)  

You should use changeip and networksetup to change the IP of the interface which has your new public IP. At least changeip on 10.3 is necessary.
Some references:
http://docs.info.apple.com/article.html?artnum=303495
http://docs.info.apple.com/article.html?path=RemoteDesktop/3.0/en/ARDC880.html

Similar Messages

  • Link Messages 'My Picture' to the image in my Contact Card

    I recently installed a new SSD into my MacBook thus I did a fresh install of OS X Mountain Lion (and applied any updates).  I opened Messages and sent a message, but noticed that the Avatar used for myself was the same image I selecting when setting MacBook up (Guitar Avatar).  If I recall, before doing the fresh install, Messages was using what Picture I had set in my Contacts Card ('me').  Should this be the case by default?  I am sure this what I saw before reinstalling ML.
    Can one link the Message picture to that of ones own Contact Card?

    Hi,
    It is not strange.
    It is about which Pic you chose when and in which order.
    If you don't change the Addresss Book (Contacts) My Card pic it will default, on a fresh Install, to the Mac User Account one.
    Messages will do the same (even if you change the Contacts one) it will default to the Contacts List one if you don't set one in Messages.
    You can in fact be using three different Pics.
    9:35 PM      Thursday; October 18, 2012
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
      iMac 2.5Ghz 5i 2011 (Mountain Lion 10.8.2)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • XVR-1200 - dual monitor mirrored

    Hi,
    I've inherited a SunBlade with an XVR-1200 graphics card, currently setup in widescreen mode over 2 monitors. I've been asked whether it is possible to setup the card such that the second monitor displays exaclty what is on the primary monitor - i.e. everything is replicated (mouse movements, applications, etc). This is a live production system so I haven't had the chance to experiment.
    Is this possible, either via a card option or via some Xserver change?
    Regards,
    Ian

    I do not think it can be done without external hardware, taking the same approach as when you get set up for a projector.
    Glancing briefly through the Installation Guide of that card, I see no help for what you hope to do.
    http://sunsolve.sun.com/data/816/816-7386/pdf/
    Technically, this is an OS configuration question and not a hardware issue. You're seeking guidance to manipulate some settings in the GUI.
    I'll let it continue, here, for the moment. Consider duplicating your question in one of the Solaris forums.
    http://forum.sun.com/index.jspa

  • XVR-1200 graphics card - dual monitor mirror

    Hi,
    I've inherited a SunBlade with an XVR-1200 graphics card, currently setup in widescreen mode over 2 monitors. I've been asked whether it is possible to setup the card, or Solaris, such that the second monitor displays exaclty what is on the primary monitor - i.e. everything is replicated (mouse movements, applications, etc). This is a live production system so I haven't had the chance to experiment.
    I've checked the graphics card manual - doesn't seem to be a way to do this in hardware. So is this possible via some Xserver change or 3rd party s/w? Wondering if there is someway to use VNC to do this.
    Regards,
    Ian

    Hi,
    I've inherited a SunBlade with an XVR-1200 graphics
    card, currently setup in widescreen mode over 2
    monitors. I've been asked whether it is possible to
    setup the card, or Solaris, such that the second
    monitor displays exaclty what is on the primary
    monitor - i.e. everything is replicated (mouse
    movements, applications, etc). This is a live
    production system so I haven't had the chance to
    experiment.
    I've checked the graphics card manual - doesn't seem
    to be a way to do this in hardware. So is this
    possible via some Xserver change or 3rd party s/w?
    Wondering if there is someway to use VNC to do this.
    Regards,
    IanHi,
    I haven't had any replies to my request, so I'm going to try to broaden the question (i.e. make it less XVR-1200 specific):
    Does anyone know of a graphics card that allows the replication of the primary monitor to the secondary monitor?
    Cheers,
    Ian

  • Updating infotype from userexit of PA30

    in transaction PA30 when i create data in one infotype (say 0033) i want to create data in another infotype (0019)
    which user-exit do i need to use for the same
    can anyone please help me regarding the same
    thanks in advance

    I am BADI HRPAD00INFTY (method IN_UPDATE) for PA30 TC and changing
    the addresss field infotype, in GF7/500 system.
    In BADI, there are two importing parameter which i am reffering to -
    1. OLD_IMAGE
    2. NEW_IMAGE.
    In the above structures the field DATA1 contains the old values and new
    values(in respective structures) of the address. My requirement is that
    i want to get the old values and new values in proper structure format
    whereas the field DATA1 contains the values in string format.
    I am trying to read the values through data1 with the help of offset
    keyword but there is a encrypted symbol that is coming in the
    field DATA1 because of which it is giving me a dump.
    So kindly do the needful ASAP.
    Reagrds, Ranveer

  • Apart from using a DNS Service, is there a way of getting an Xserve to notify an administrator of a change of external IP address?

    I have an Xserve running 10.5.8 which is I want to notify me when its external IP address changes.
    Is there a way to get it to do this?

    Here is my finished solution using applescript.
    If it is of use to anyone else please feel free to use/improve it.
    global OLD_IP
    global Current_IP
    global IP_text
    set OLD_IP to ""
    set Current_IP to ""
    set Test_text to ""
    ---on run get the current external IP address & set it as the Base IP to compare to
    do shell script "curl -s checkip.dyndns.org"
    set Pub_IP to result
    set OLD_IP to Pub_IP as string
    ---show the address
    display dialog "IP is: " & return & OLD_IP giving up after 2
    on idle
        try
            set IP_Changed to false
            set Current_IP to ""
            ---get the current external IP address
            do shell script "curl -s checkip.dyndns.org"
            set Pub_IP to result
            set Current_IP to Pub_IP as string
            if Current_IP is equal to OLD_IP then
                set IP_Changed to false ---if it is the same then it hasn't changed (false)
            else
                set IP_Changed to true ---if it is different then it has changed (true)
            end if
            if IP_Changed is true then ---if there is a difference the email the change to administrator(s)
                set target_string to Current_IP as string
                set replacement_string_1 to "<html><head><title>Current IP Check</title></head><body>"
                set replacement_string_2 to "</body></html>"
                my replace_and_select(target_string, replacement_string_1, replacement_string_2) ---removes HTML coding
                tell application "Mail"
                    set Mail_to_1 to "[email protected]"
                    set Mail_from to "[email protected]"
                    set theName to "Administrator"
                    set theAddress to Mail_to_1
                    set theSubject to "Server Public IP Address"
                    set theBody to IP_text
                    set newMessage to make new outgoing message with properties {subject:theSubject, content:theBody & return & return}
                    tell newMessage
                        set visible to true
                        set sender to Mail_from
                        make new to recipient at end of to recipients with properties {name:theName, address:theAddress}
                        activate
                        send
                    end tell
                end tell
                set OLD_IP to Current_IP ---set Base IP to the new one ready for next test
            end if
        end try
        return 3600 ---wait one hour before repeating the test
    end idle
    on replace_and_select(target_string, replacement_string_1, replacement_string_2)
        set this_text to target_string as string
        set this_offset to the offset of the replacement_string_1 in this_text
        set this_offset_2 to the offset of the replacement_string_2 in this_text
        set this_offset_3 to this_offset + (length of the replacement_string_1)
        if this_offset is not 0 then
            set IP_text to items this_offset_3 thru (this_offset_2 - 1) of target_string as string
        end if
           return
    end replace_and_select

  • How to change xserve raid-card battery?

    how to change xserve raid-card battery?

    Xserve RAID Card Battery Replacement Instructions:
    http://manuals.info.apple.com/MANUALS/0/MA277/en_US/Xserve_RAID_Card_Battery_DIY Instructions.pdf

  • How to change Xserve name

    I recently changed my Xserve name in Sharing from "mama-new" to "mama" and rebooted the server.
    But I found the old name is still showing up in SUS logs and in iChat service logs
    Can anyone suggest how to clean up the old server name?
    Regards

    login as root.
    go to folder /etc
    edit the hostconfig file
    look for an entry HOSTNAME=-automatic-
    replace -automatic- with the name you want.
    reboot server

  • Change binding port of Xserver rather than 6000

    Hi Sysop,
    Can we change the binding port of Xserver rather than port number 6000 ?
    And how we can make it done ?
    Thanks.

    Hi
    The configuration files for the Xserver on your host should be in
    /etc/dt/config/Xconfig
    /etc/dt/config/Xservers
    If these files have never been customised or don't exist you can copy the default versions of
    these files from
    /usr/dt/config/Xconfig
    /usr/dt/config/Xservers
    to /etc/dt/confi, you can then edit them.
    From your post it's unclear what you are trying to do, however the 2 config files above have
    quite a bit of useful information in them about the various settings for the Xserver.
    regards

  • XServe identity keeps changing

    I'm not sure how it happens exactly (probably when I'm making changes to the DNS server UI), but my Xserve at 72.70.42.18 , which I want to be:
    xserve.compusmiths.com
    keeps becoming (for instance)
    xserve.lincolngutters.com
    (one of my client sites). Not a problem, they are all the same IP address, but when I add a user the system wants it to be on xserve.lincolngutters.com instead of xserve.computersmithsconsulting.com, etc.
    I've looked at hostname, and the reverse DNS is OK (now), how do I change what the UI fills in?
    Thanks!

    On a server... always use sudo changeip to change your hostname.
    Do a "man changeip" for more info on running the command but here's an example.
    For a stand alone server... sudo changeip - 192.168.0.2 192.168.0.2 old.domain.com new.domain.com
    Type your IP to the server in both spots (192.168.0.2) since you aren't changing that.
    If your hostname is automatically changing, I would say there is something in your DNS causing that. Check to see if there is an 72.70.42.18 IP set to be xserve.lincolngutters.com

  • No Inputs in xserver(unable to access /etc/rc.conf to change startup)

    Hello everyone,
    I've installed arch on an older notebook and of all the steps I could miss, I forgot to add hal to the daemons array in /etc/rc.conf so now when arch boots up it goes directly into xserver(kde) without any input hotplugging resulting in no input from trackpad/keyboard, as well as external mouse and keyboard.
    I've tried editing /etc/rc.conf when using the arch boot cd but I get "permission denied" when trying to mount /dev/sda1,2,3,4 etc. Is there any way I can interrupt the boot process so that I can remove "kdm" from the daemons array? Or to somehow stop arch from booting into xserver? I'm somewhat new to the linux environment but I try my best to follow all and any tutorials/advice and you guys seem to have the most detailed tutorials of all the distros - way to go!
    Thanks for the help
    Last edited by geometro (2010-06-08 01:30:06)

    You need to set a different runlevel in the Grub entry. Once you have selected the entry in the boot menu, you can edit it by pressing key e. Add "3" (without to quotes) to the end of the kernel line and then Esc to exit. Then you can try to boot by pressing b.
    Runlevel 3 didnt work(still booted into xserver), but I looked up into runlevels(didnt know about them before) so I tried runlevel 1 and it worked! :P Thanks for the help!!
    "Runlevel 1 is usually for very basic commands. This is the equivalent to "safe mode" used by Windows. This level is usually only used to asses repairs or maintenance to the system. This is a single-user mode and does not allow other users to login to the machine."
    edit: typo
    Last edited by geometro (2010-06-08 05:07:58)

  • Change the IP Addresss of Servers that are members of a Windows Failover Cluster and SQL cluster

    Hi all,
    I have 3-nodes Windows Server 2012 R2 Cluster, on top of it I have two clustered named SQL 2012 instances installed. We need to change the IPs and subnet for the three physical servers incorporated in the Windows cluster. What will be the impact on
    the Windows and SQL clusters? What extra configuration is needed in both Windows and SQL clusters to make sure the service will not fail after changing the IPs?

    A similar question was answered
    here.
    The impact is that your Windows and SQL Server failover clustered instances will be offline during configuration so you need to schedule downtime. Plus, your client applications will not be able to find the new IP addresses immediately, depending on your
    DNS TTL value. Work with your network/systems engineers to find out what this value is or validate the existing TTL values on your clustered resources by checking the HostRecordTTL property value. A workaround here is to set the HostRecordTTL property values
    of your SQL Server network name to a very low value, say 1 minute, and then change it back to the current one once all of the applications can connect back to them.
    Edwin Sarmiento SQL Server MVP | Microsoft Certified Master
    Blog |
    Twitter | LinkedIn
    SQL Server High Availability and Disaster Recover Deep Dive Course

  • HT5824 would like to change my email addresss

    By mistake my husband address got put in in my account and I would like to change it, how do I do it?

    What email address?
    If the one associated with Apple ID/iTunes account see:
    Frequently Asked Questions About Apple ID

  • Change Optical Drive in XServe (Slot Load)

    I have an XServe (Slot Load) and want to swap out the slot load CD-ROM for a DVD-ROM. Is it possible and what is the part number for the DVD-ROM?
    Thanks!
    Tom

    Hi Tom
    It might be possible to use a DVD-ROM from an iBook G4? If you can get one cheap on eBay it might be worth a shot? You might find this useful:
    http://www.scribd.com/doc/103408/xserve
    Scroll down to the Exploded View section as it might give you an idea of what it looks like. I regularly repair Apple hardware, amongst them iBook G4s. Judging by what I see in the Exploded View they look very similar?
    Perhaps someone else may know different?
    Tony

  • Xserve Services are accessible for a moment and then can't access

    I have new Intel Xserve. Set up as a gateway, open directory master, web server, etc. Ethernet 1 connects to the wan and Ethernet 2 connects to a new Airport Extreme. The client machines are Macbooks. The Xserve is set up to be the dhcp server. The Airport is a bridge.
    Everything was working fine until last week. Here is what is happening: The Macbooks can use the services that the Xserve provides for a short while, ie they can browse the Xserve's websites, browse internet websites and authenticate with open directory. Then after a short while they can't. For instance attempting to get to www.apple.com with the Macbook will result in a constant "contacting ...." status in Safari. Authentication with Open Directory is no longer possible. Even trying to browse 192.168.2.1 (the Xservers Eth2 IP address) results in "contacting...." and nothing happening. Interestingly I can still ping 192.168.2.1 from the laptop.
    To get things working again I've found I can simply make a change to the setting of the ethernet card on the Xserve. For example I might switch it from static ip to dhcp and back. I might change the ethernet from auto to manual and back or whatever. Just make a change to the network settings and apply then change them back and apply. The laptops will be able to access the services again for a short while (maybe a minute or two) and then things get stalled again. They won't be able connect to websites or get access to the internet etc. Again even http://192.168.2.1 won't work. Change something in network settings and change back and it will work for a short while again. Nothing is popping out at me in any logs I'm looking at.
    Do I have a hardware problem? At first I assumed DNS perhaps? Since the server is pre-production I erased the harddrives last night and reinstalled OSX Server. Set it up as a gateway and webserver using the apple setup aids and the same thing. Laptops can access the server for a few moments then fail. If I make a change to the networking settings in preferences that seems to reset things for a short time and then it fails again.
    I'm stumped, but then again I'm also new at this.
    Xserve   Mac OS X (10.4.9)  

    &tWhen the clients keep on showing the "connecting..." screen, that is usually a DNS problem. Do you have the DNS servers correctly listed under DHCP services by the server?
    If you can ping your server but cannot access the Internet try the dig command and see if the DNS servers are responding.
    ;b>dig www.apple.com
    The last few lines should contain the IP address of your DNS server like this:
    e.g. Covad DNS server
    ;; Query time: 25 msec
    ;; SERVER: 64.105.189.26#53(64.105.189.26)
    ;; MSG SIZE rcvd: 284
    If the IP address shown there is not the one for the DNS server, you have configuration problem.

Maybe you are looking for