Really weird thing with NAT

We recently had to change the IP address and subnet mask of our servers. I followed a couple of TIDs showing where all of the changes are to be made. We are now running into a very weird problem on our Border Manger server. We are running version 3.6 and it is on a Netware 6 server. When the server is rebooted, no internet traffic (other than HTTP proxy) can get through. I have checked all of the settings and everything seemed to be fine. Checked INETCFG to make sure that IP Packet Forwarding was enabled and made sure that pass thru was enabled. Ended up checking TCPCON and found that the IP Packet forwarding was disabled. In order to get IP traffic flowing again, we have to disable IP packet forwarding in INETCFG, save the settings, reinitialize the system, go back into INETCFG and reenable IP Packet forwarding, save the settings and reinitialize the system. Once this is done, everything seems to work fine (till the server is rebooted again) I cannot figure out what is causing this. Does any body have any direction to resolve this issue?
Thanks in advance for any assistance.
Brian

In article <A8zLc.8394$[email protected]>, Brian
wrote:
> I've seen the same issue just a few weeks ago. It seems that NAT on
> Bordermanager does not work when supernetting is configured.
>
When supernetting is enabled, routing is disabled, not NAT. Though I
am not clear if there is a NAT issue or not. To get around the
problem, people have been manually re-enabling routing once
supernetting is in place.
Craig Johnson
Novell Support Connection SysOp
*** For a current patch list, tips, handy files and books on
BorderManager, go to http://www.craigjconsulting.com ***

Similar Messages

  • I am having some really weird problems with my Iphone with photos and music!

    I am having some really strange problems with my Iphone with photos and music. In my photos icon I have a bunch of albums but the pictures are all synced to the wrong albums. The pictures are just all mixed up and in the wrong albums. As far as my music problem. In my playlists for my music I am trying to rearrange my songs in a particular order of listening. It lets me do it but when I hit done it randomely changes them in puts them in all different orders. Can anyone help?

    This indicates a corrupt file(s).  A restore should resolve.

  • REALLY cool and weird thing with the room light and Apple IR receiver

    I don't know if that has already been reported here or if it happens with other people. When running vista, I turn off the room's light and don't touch mac until the screen turns off. If I turn the light back on, vista automatically turns on mac's screen too... It's kinda creepy sometimes, but it's cool! I know it's related with the IR receiver, but shouldn't it recognize only Apple IR Remote's commands?

    You may see apps in the new App Store that will accomplish what you're looking for.
    Dave M.
    MacOSG Founder/Ambassador  An Apple User Group  iTunes: MacOSG Podcast
    Creator of 'Mac611 - Mobile Mac Support' (designed exclusively for an iPhone/iPod touch)

  • Weird Thing With Exporting As Quicktime Movie

    Ok, so this has been happening for months now, but I didn't really think anything of it until now. Whenever I export a movie as a Quicktime Movie, it exports it as 2 files, the regular movie file, and the same file with "-av1" behind it. The second part has to be there in order for it to play. What's stranger is that when I put them into a folder, the movie no longer plays properly. What is up with this?

    I have just experienced the -av1 phenomena for the first time.
    I have been exporting to QT movies regularly using the same internal and external drives for months - no changes, no incorrect formatting. I have used those exported movies to create One-Step DVDs in iDVD for display and distribution. This -av1 file thing is keeping me from doing that.
    The only diff with this project (and, in fact, it's a new Sequence in a Project that has successfully been exported (without the companion file)) is that this sequence had .aiff music files some of which were from iTunes (downloaded/protected).
    I thought that might be the problem, so I created mp3s (by burning to disk and re-importing) and replaced the aiff's in the timeline - it still insisted on creating -av1 files with the QT Movie.
    Help would be appreciated.
    Thanks.
    MacBook Pro Mac OS X (10.4.8)
    MacBook Pro   Mac OS X (10.4.8)  

  • A really WEIRD thing!! Maybe you could give me a suggest.... :-(

    Hello everyone... I'm trying to create this as follow:
    CREATE TABLE OFFICE_DATI_TEST
    ID NUMBER NOT NULL,
    FIELD1 NUMBER,
    FIELD2 NUMBER,
    FIELD3 NUMBER,
    CONSTRAINT PK_ID_DATI PRIMARY KEY (ID)
    USING INDEX TABLESPACE test_indexes
    CREATE SEQUENCE SEQ_OFFICE_DATI_TEST
    INCREMENT BY 1
    START WITH 1
    MAXVALUE 1E27
    MINVALUE 1
    NOCYCLE
    NOCACHE
    NOORDER;
    CREATE TRIGGER TRG_OFFICE_DATI_TEST BEFORE INSERT ON MCROFFICE.OFFICE_DATI_TEST
    REFERENCING NEW AS NEW OLD AS OLD FOR EACH ROW
    BEGIN
    SELECT seq_office_dati_test.NEXTVAL INTO :NEW.ID FROM dual;
    END;
    CREATE OR REPLACE TYPE T_OFFICE_DATI_TEST IS OBJECT
    ID NUMBER,
    FIELD1 NUMBER,
    FIELD2 NUMBER,
    FIELD3 NUMBER,
    CONSTRUCTOR FUNCTION T_OFFICE_DATI_TEST(SELF IN OUT NOCOPY T_OFFICE_DATI_TEST)
    RETURN SELF AS RESULT
    CREATE OR REPLACE TYPE BODY T_OFFICE_DATI_TEST IS
    CONSTRUCTOR FUNCTION T_OFFICE_DATI_TEST(SELF IN OUT NOCOPY T_OFFICE_DATI_TEST)
    RETURN SELF AS RESULT IS
    BEGIN
    RETURN;
    END;
    END;
    CREATE OR REPLACE TYPE t_t_office_dati_test AS TABLE OF T_OFFICE_DATI_TEST;
    CREATE OR REPLACE FUNCTION FUN_OFFICE_DATI_TEST
    RETURN T_T_OFFICE_DATI_TEST PIPELINED PARALLEL_ENABLE IS
    BEGIN
    DECLARE
    TYPE c_office_dati_test IS REF CURSOR;
    c1 c_office_dati_test;
    out_rec T_OFFICE_DATI_TEST;
    BEGIN
    OPEN c1 FOR SELECT ID, FIELD1, FIELD2, FIELD3
    FROM OFFICE_DATI_TEST;
    LOOP
    FETCH c1 INTO out_rec;
    EXIT WHEN c1%NOTFOUND;
    PIPE ROW (out_rec);
    END LOOP;
    CLOSE c1;
    RETURN;
    END;
    END;
    then I do just:
    SELECT * FROM TABLE(FUN_OFFICE_DATI_TEST);
    and I get an error as this:
    ORA-06504: PL/SQL: Return types of Result Set variables or query do not match
    ORA-06512: a "FUN_OFFICE_DATI_TEST", line 11
    Why?...it's really simple and looks really ok looking at table structure and objects...
    even compiling each object no errors appears....
    Thanks
    Luigi

    Why are you making your thing utterly complicated? :(
    Luigino wrote:
    Hello everyone... I'm trying to create this as follow:
    CREATE TRIGGER TRG_OFFICE_DATI_TEST BEFORE INSERT ON MCROFFICE.OFFICE_DATI_TEST
    REFERENCING NEW AS NEW OLD AS OLD FOR EACH ROW
    BEGIN
    SELECT seq_office_dati_test.NEXTVAL INTO :NEW.ID FROM dual;
    END;
    What the hell is this? Why do you need this trigger when you are just fetching sequence value?
    Please explain.
    CREATE OR REPLACE TYPE T_OFFICE_DATI_TEST IS OBJECT
    ID NUMBER,
    FIELD1 NUMBER,
    FIELD2 NUMBER,
    FIELD3 NUMBER,
    CONSTRUCTOR FUNCTION T_OFFICE_DATI_TEST(SELF IN OUT NOCOPY T_OFFICE_DATI_TEST)
    RETURN SELF AS RESULT
    CREATE OR REPLACE TYPE BODY T_OFFICE_DATI_TEST IS
    CONSTRUCTOR FUNCTION T_OFFICE_DATI_TEST(SELF IN OUT NOCOPY T_OFFICE_DATI_TEST)
    RETURN SELF AS RESULT IS
    BEGIN
    RETURN;
    END;
    END;You are using NO_COPY. Why? Please explain.
    >
    CREATE OR REPLACE TYPE t_t_office_dati_test AS TABLE OF T_OFFICE_DATI_TEST;
    CREATE OR REPLACE FUNCTION FUN_OFFICE_DATI_TEST
    RETURN T_T_OFFICE_DATI_TEST PIPELINED PARALLEL_ENABLE IS
    BEGINWhat is the function of this begin, when you are not using or writing any code in this outer begin block?
    DECLARE
    TYPE c_office_dati_test IS REF CURSOR;You want to create a type like this? Why?
    c1 c_office_dati_test;
    out_rec T_OFFICE_DATI_TEST;
    BEGIN
    OPEN c1 FOR SELECT ID, FIELD1, FIELD2, FIELD3
    FROM OFFICE_DATI_TEST;
    LOOP
    FETCH c1 INTO out_rec;
    EXIT WHEN c1%NOTFOUND;
    PIPE ROW (out_rec);
    END LOOP;
    CLOSE c1;
    RETURN;
    END;
    END;
    then I do just:
    SELECT * FROM TABLE(FUN_OFFICE_DATI_TEST);
    and I get an error as this:
    ORA-06504: PL/SQL: Return types of Result Set variables or query do not match
    ORA-06512: a "FUN_OFFICE_DATI_TEST", line 11
    Why?...it's really simple and looks really ok looking at table structure and objects...Is it? Is it a simple looking structure?
    even compiling each object no errors appears....
    If it is syntactically correct - then it won't show any compilation errors.
    Thanks
    LuigiWelcome.
    My dear friend, please don't take my words personally. If you have any alternative easy process then you should go for that. Always try to achieve this with a Single SQL. If you cannot then only you should go for PL/SQL and if you are restricted there due to some non availability feature then you can go for Java Based Procedure.
    Even if you are using PL/SQL, don't make simple thing complicated. Because, that may hamper your performance, too.
    And, finally it will be wise to decide and design your PL/SQL solution in a simpler manner rather than making things more complicated way. Results may not only increase the overhead but also create a maintenance problem in future of that coding.
    Hope you get my idea.
    My best wishes. :)
    Regards.
    Satyaki De.

  • K9A2 Platiunum - 'weird' things with Network and USB are happening...

    Hi All,
    My System specs are:
    MSI K9A2 Platinum MB
    OCZ Technology 2x2GB 240DIMM PC2-6400 Gold running at 2.2V
    AMD Phenom 9500
    2 x Samsung SATA DVD Writer SH-203B/BEBN
    GeForce 8800GTX 768MB PCIE DVI
    Coolermaster Cosmos case
    Seagate 320GB SATA2 HDD ST3320620AS
    OCZ 1010 GameXstream PSU
    OS: Vista Home Premium 64
    It was quite a task getting this machine working in the first place (see my previous threads) but I have a residual issue here that I would like to put to you and see if anyone has any ideas:
    1) I noted that there seems to be something 'wrong' with my Network connection as a) my internet was very unstable on this machine ("no cable plugged in / no connection" messages) from time to time. No pattern detectable, seems to have "gone away" now; and b) my Belkin F5D7235-4 router gives me an 'amber' status light, instead of green, for the connection to the above machine. I changed the port at the router and also changed the network cable to a new one - the status light remains on amber.
    Interestingly, the status light changes to amber only once the start-up process of the PC has progressed, it is 'green' when the PC is switched off.
    2) A function of the above problem seems to be that I cannot get a network with my 2nd machine (XP SP2 based) going. I applied the patch that has to be applied when XP SP2 and Vista machines are in the same network. The two PC's saw each other once - and then never again.
    3) Had a friend over and wanted to transfer 160GB from my external WD 1TB drive (connected through Firewire 800 to the K9A2 based machine) to his laptop via USB2.0, using my Vista / MSI K9A2 Platinum based machine (specs above). After minutes of calculating the estimated time remaining it came back to me with around "5 days 7 hours remaining". Cancelled and then used my XP SP2 based machine to perform the same task and I got "1 hour, 10 minutes remaining" and it actually got done done in that time.
    Summary: I am asking myself if I have something set-up just completely the wrong way in my MSI K9A2 Plat based machine on the BIOS level regarding the on-board network card. If yes, what could that be? But then, on top, why is this really slow USB2.0 thing happening??
    I am grateful for any ideas as I feel that I have not been able to get the top performance out of my PC yet.
    Thanks to all of you for some thoughts...
    Ciliax

    Upgrade? Fresh installation on a newly formatted disk is to prefer.
    This is little beside the point, but when installing Windows I use as little hardware as possible. It is much easier to add things afterwards than troubleshooting a complex coordination of things.

  • Really weird problem with Usage Tracking!

    Hi guys
    We are running OBIEE 11.1.1.6.5 on Exalytics and allmost all is fine and dandy. We have though one weird problem. When we first enabled usage tracking, we sudddenly got some errors on some of our dashboards, saying that we didn't have the privilegies to create temporary tables. Allright we got our user (which is a shared user) the privilegies to create temporary tables, and the reports with the problems started working again! Awesome! But low and behold - then Usage Tracking stopped working, not a single mentioning in the logfiles about it. Maybe an error or, the acknowledgement that Usage Tracking has started, which is the normal.
    So basically we are running without Usage Tracking because the reports that gives us the problems are deemed more important... which they might be, but thats different story...
    Any ideas to what is going on here? We have collected Usage Tracking data, while the reports were broke, so im quite confident that the setup is correct. But why would it stop, when giving "create table" privilege to our shared user?
    Best regards, Jacob

    What is the setting for UsageTrackingDirectInsert?
    Have you tried chaging the output to file instead of database?
    Please see:
    http://docs.oracle.com/cd/E23943_01/bi.1111/e10541/usage_track.htm#i1017237
    Section 9.3, "Setting Up a Log File to Collect Information for Usage Tracking"
    Michael
    PS:
    Hi Christian! :)

  • Really weird Problem with NEO-FISR mobo.

    I'm new to this site, but I am not a noob.  However this is a first for me, and haven't gotten any answers from any of my co workers.  I'm hoping someone else with my board (875P NEO-FISR) will have an answer.
       Anywho, PC was working fine.  Put it in standby mode to watch TV for awhile and come back to check e-mail a few hours later.  I hit the power button and everything lights up, fans start spinning, but no POST.  THen it shuts down after like 3 seconds.  Then another 2 seconds and it pops on, pops on and off continually after that until I hit the switch on the power supply.  
          This happened twice today, and has happened maybe 3 times prior.  However, every other time was a long time ago when I first set everthing up.  Its been like 2 months now and here we go again.  
        Ididn't change anything this morning when I left the PC so I don't know what is causing it.  
      Its a real pain in the ass though cuz I have to clear the CMOS jumper in order too get back up and running.  Then I have to reconfigure all my BIOS settings.  
      SO, has anyone else heard of this happening??  Happened to you???  Any suggestions or solutions would be appreciated!  Thanks

    I have the version 1 875P-FIS2R board and it does the same thing.
    Originally, I just stopped using S3 suspend mode but I have since started using it again and bumped my performance mode down to "fast" to make this work as per a suggestion from another user on the forum(Mitch66).
    You can read more on this from This Thread.
    Never did ever hear of a fix for this.  

  • Really weird problem with macbookpro. HELP PLZ:sys pref not responding.

    The only thing I have done with my mac is add bootcamp. For windows based game.
    But My problem is I try to click on system preference and nothing comes up. Nothing happenes.
    Everything works fine with my mac, just can't get system preference to respond.
    Will I have to reinstall leopard/reformat to fix or what?
    thx
    kevin

    That would explain why it doesn't open. Apparently someone has deleted it by mistake.
    You may be able to extract a new copy of it from your OS X installer DVD using [Pacifist|http://www.charlessoft.com>.

  • Really weird problem with msi 815ep pro

    hi all i have searious problem with my sweety motherboard everything should be ok but its not .. the leds are showing that all simm to be fine (4x green) but i cant install any os (linx,windows) its funny cause when i had hdd 850mb windows98 installed perfectly or when i repair a disk everything goes ok i changed disk for known reason (capaticity) to seagate 2,5gb also tried with 120gb and 4,3gb but nothing after starting the instalation its hang up i tried everything i changed processor, ram, hdd connectors, graphics card, cd-rom also switched off integrated audio and others like midi, usb... and still nothing i do not have any more ideas i dont know what to do    i've noticed that few capacitors have minimal belly on top could it be this or what else maybe hdd controller is broken ? how do you think i also cant flash bios to older version dont know why... please help me   

    i've got it those were capacitors !!    i wouldn't expect that but it was my last chance i changed 4 capacitors and really they weren't soo much belly on the top now my motherboard my sweet honey yelly works perfect      hehe greetings for everyone
    love rules !

  • Weird things with Screen-Recording

    I have tried useing quick time on my mac to make game play videos, but whenever I go into full screen mode for the game the final video shows up in the top corner of the screen and the rest of the screen is taken up by the streched out edges of my video. 
    https://www.youtube.com/watch?v=tKKGON0PCqY
    Above is a link to an example of what is happening. 

    I have several users that suffer from this problem. The solution, as
    always, is to move the contents of the mailbox to a temp folder then
    back.
    When the problem occurs, put the GWIA in debug and watch the messages.
    It appears that GWIA is returning an infinite (continuous) number of
    message id's.
    Jeff
    On 2011-04-07 07:08:48 -0700, DZanre said:
    > [email protected]: wrote:
    >
    >> Did this get resolved? I have a user that a similar thing happened to on
    >> Thursday last week. All of a sudden email from April 2010 popped into his
    >> iPhone and iPad. I have rebuilt his database and checked his account. There
    >> were only 16 items in his mailbox.
    >
    > So, this is interesting to me, because I've had IMAP problems over the past few
    > months, and I attributed it to my huge, unwieldy mailbox! For example, if I
    > choose to have 200 messages download to my phone, for example, I will see a big
    > "gap" in the messages. I might have all of April, March 31, March 30, and then
    > Feb. 14, etc.
    >
    > This is not, however, a function of the iOS itself. If you go to
    > www.mail2web.com and log in via IMAP to the account, you see the same thing
    > there! How I've been able to fix it for my own mailbox is to move everything
    > out of the mailbox folder, into a temp folder, and then move the messages back
    > to the mailbox. This actually means that the IMAP message IDs are getting
    > messed up. So, I'd like to see if someone else is seeing the same thing I see
    > so that we can push Novell a bit more for it.
    >
    > So, you really have to wait until you see it again, and then see if the same
    > issue occurs in mail2web.com (i.e., any IMAP program that only downloads the
    > last "x" messages.
    >
    > Thsnks

  • Mail is suddenly doing really weird things

    Hi, I am starting to have my MAIL program acting very strange.  For one thing, it keeps shutting down for no reason. Either in the process of reading or responding to an email, just sitting idle, or in the process of downloading new mail.  I have read on forums about deleting all 3rd party plug ins (I didn't have any), deleting "things to do" in iCal (again, I lead a boring life so nothing there), relaunching (about a dozen times a day now) and just about everything else suggested short of a complete reset which I am afraid to do as I can't lose any of the emails I have in the storage. I currenty have about 20GB of free space still (and have for years). I have run Onyx and ran permission fixes gallore.  It still shuts down for no apparent reason.
    Now here are some other things it is doing since this started about a month ago.  When I close out the program from the tool bar (Quit Mail), the window closes out but the MAIL remains in the tool bar with a greyed out "QUIT MAIL".  I can not open a new window as long as this is in this way.  I have to force quit mail to get it to relaunch.
    I am also getting a lot, and I mean a lot (about 20+ per day) of my old emails from the past three years popping up in various folders that they don't belong in and indicating that they are "unread" ie: bold lettering. When I say various, I mean they are showing up in folders that have nothing to do with the subject or the client. They are suddenly appearing in other client or project's correspondence.
    So what do I do or should I do.  I have kept these emails in their folders as I do refer back to certain client subjects that are sometimes up to three years ago. One folder is just of emails from my son who passed away in 2011. His emails suddenly show up as new mail in various folders as well. I know tomorrow is Halloween, but this is a bit too spooky (or technical) for me to figure out.
    Any one have any suggestions on what could be going on?  and suggestions to fix it?  Would a complete reset of MAIL erase all my folders and emails? I could probably loose some of my old client/project emails, but I do not want to lose my son's last correspondences to me.
    Thanks
    Lew

    Hi Lew,
    Not certain, but this can fix myriad Mail problems...
    Safe Boot from the HD, (holding Shift key down at bootup),  it will try to repair your Disk Directory while the spinning radian is happening, so let it go, run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions, then move this folder & file to the Desktop.
    Move this Folder to the Desktop...
    /Users/YourUserName/Library/Caches/Mail/
    Move this file to the Desktop...
    /Users/YourUserName/Library/Mail/Envelope Index
    Reboot.
    If that doesn't do it and you can afford to redo all your Rules, try these & reboot...
    /Users/YourUserName/Library/Mail/MessageRules.plist
    /Users/YourUserName/Library/Mail/MessageRules.plist.backup
    Note, in 10.5 & up /Users/YourUserName/Library/Caches/Mail/ may or may not exist.
    If it continues to happen...
    Open Console in Utilities & see if there are any clues or repeating messages when this happens.

  • Weird things with my ipod

    I've been having a lot of problems with my iPOD. Whenever I reset it, because sometimes it freezes, it stays on the Apple logo for a little bit. Then a dead ipod image appears and then the apple support web site comes up. I'm not really sure what to do. I've tried resetting it a lot and nothing seems to work.

    Try this Hard Reset, (it wont delete any song or data on your iPod), from time to time to clear the cache.
    After charging till full charge, at least 2 hours (preferably 4 hours)
    Toggle the Hold switch, make sure you dont see the red mark when you do the  next step
    Reset the iPod -> Press Menu and Center button simultaneously for about 10 secs till the Apple Logo comes ON
    Then release the buttons
    Select your preferred language.
    Here is the Apple support Article on the 5Rs
    http://www.apple.com/support/ipod/five_rs/classic/
    If it doesn't work, bring it in to Apple Store for the Genius to have a look.
    Good Luck!

  • Weird things with mini

    My mini started acting up about a week and a half ago. First it got disconnected from my comupter without being ejected and all the songs got deleted. The next time I tried to turn it on, I got the sad ipod picture followed by a battery picture. The sad ipod is still there but the battery picture is gone now. Plus, when I try to turn it on it starts making this weird clicking noise. I've tried to manually do the disc thing or whatever it's called, and it didn't work. Normally, I would just drop it off to a repair shop, but the nearest one is in another city. Any suggestions???
    P.s. a week before all this it locked up one day. came back on after the batter drained.
    ipod mini    

    I'll cut to the chase: the clicking hard-drive noise means your disk is done. You can either replace the CF microdrive, or buy a new iPod (assuming you're out of warranty). Since I like the Mini design, I decided to do the former; checkout the article I wrote about my experience.
    http://www.audioholics.com/techtips/setup/loudspeakers/iPodMiniUpgrade.php

  • I'm having a really weird problem with my iPod..

    There's a blank white screen on my ipod (3rd gen.) and I have no idea why. I plugged my ipod into my XBOX 360 to listen to my music through there and everything was going good. But when I turned off my XBOX, it said "Ok to disconnect" on my ipod screen, I turned off my ipod, but I didn't unplug it from my XBOX. A few minutes later, I saw the screen light up white and it's been there ever since and I really can't figure out why. I've tried turning it back off and it won't even turn off. I tried turning my XBOX back on to see if that would work and didn't. I also tried plugging it into my computer and now my computer won't even reconize it. It won't open up iTunes or anything and the screen just stays white. I can't turn it off or anything. Does anyone have any idea what might be wrong with it? Any ideas on how to fix it? Any help would be appreciated.

    Hi,
    For me this one seems like a hardware issue. However you may try the following steps first before you could send them for service.
    1. Toggle the hold switch for 10 times and then do a reset.
    2. Try following http://support.apple.com/kb/HT1363 to place the iPod in disc mode and then try connecting to computer.
    3. If it is getting recognized in iTunes, do a restore and then use the iPod.
    4. If not take it for service.
    Regards,
    Prashu

Maybe you are looking for

  • Unable to install OS

    HI Team, We have procured 30 840 G2 laptops from HP, when we are trying to install OS external CD Drive is not detecting. There is no issue with External CD drive, it seems there will be some setting needs to be done in BIOS. Can you pelase help us t

  • Xml file to sap scenario

    Hi all, I have a requirement like ,i have one xml file ,now i want to integrate into sap.so plz help which scenario i have to follow. thanks & regards, subba reddy

  • ABAP Proxy without SOAP adapter in PI7.3

    Hi All, We have dual stack implementation of PI7.3 but we do not wish to use the SOAP adapter for configuring an ABAP proxy scenario. Is this possible? Is the Javastack only configuration in NW Admin available for use in dual stack implementation als

  • Computer to TV connection

    I have a Macbook from about 2008, and want to connect it to the TV the way I've seen done with PCs. I've been told I need a HDMI to VGA cable, but can't seen to find one anywhere. First, is that what I need? Is my relatively older laptop obsolete for

  • How do i get Apple Mac to sync to ICloud?  Contacts are different on mac, iCloud to iPad

    trying to get my apple mac and iPad to sync.  I have an iCloud account but it is not backing up my mac and doesn't show my iPad if i log in from my mac.  Contacts or photos not updating.