Force physical MAC on a VM

Hi all,
we need to create a virtual machine on Oracle VM 2.2.1 with a MAC address which actually corresponds to a physical machine. This is an old physical machine with an outdated support, but software license is currently supported but it depends on the host MAC address.
We were thinking to virtualize this machine, with a physical MAC 00:18:FE:XX:XX:XX. When creating the virtual machine on the Oracle VM Manager, an error is raised:
OVM-4104 MAC address has to start with 00:16:3E.
AFAIK physical MACs can be used on Xen... actually we can do this by creating the virtual machine and force the physical MAC address in the vm.cfg file, but doing this we can not catalog the VM on the Oracle VM Manager. Is there a way to allow physical MACs on the Oracle VM Manager?
We were thinking a workaround by updating the physical MAC Address in the Oracle Database after creating the machine with a Xen MAC Address, in this case which tables should we upgrade?
Best regards,
Marc Caubet

Oh, I've found a solution: if I manually create the vm.cfg file and I import thee machine in the Resources Tab -> Virtual Machine Images, machine with the physical machine will be cataloged in the Oracle VM Manager.

Similar Messages

  • How can i force my mac book pro to use an external display

    how can i force my mac book pro to use an external display
    my screen is black

    What sort of adapter are you using?
    Clinton

  • How can I 'force' my Macs to look for each other on the network?

    OK, I have an iMac with a wired connection to a router, and a MacBook Pro with a wireless connection to the same router. Most of the time, they can 'see' one another on the network, no problem. But, every so often, even after both have been on for a while, I will click the Network icon and the other computer will not appear as available - this happens even when the target computer can see the computer I'm using to try to access it.
    So, here's my question: how can I 'force' my Macs to look for (and find) one another on the network?
    Thanks... if you need further information, just ask... - beck

    If you are using Tiger, go to
    Finder menu -> Go -> Connect to Server
    Enter the specific IP address of the other Mac where is says +Server Address+. You can find the IP address by running System Profiler or looking at System Preferences Network pane (on the other Mac).
    Once you have mounted the volume you to access, make an alias for it and place it in the Dock or on your Desktop. The next time you want to connect to that server, use the alias.

  • Hint or parameter to force physical read

    I am using  Oracle 11.2.0.3. I have a query which took 45 minute the first time and it take 4 minutes in subsequent run  in QC environment. In both the cases it uses same plan. If I try the query again in few days , first time it takes considerable amount of time.Most of the wait is in range index scan - 'db file parallel read'
    Same query runs within 2 minutes in lower environment with different plan. I have used  hint to make the plan same in QC environment. Now query runs as expected but I suspect it might slow down if the data is not cached. I do not have access to  alter system flush buffer cache privilege.
    Is there any  hint or parameter I can use force physical read?
    Which view will tell me if a table is still cached in memory?

    spur230 wrote:
    <snip>
    Which view will tell me if a table is still cached in memory?
    v$bh will tell you what blocks of an object are cached:
    orcla> select file#,block#,status from v$bh where objd=(select data_object_id
      2  from dba_objects where owner='SCOTT' and objecT_name='DEPT');
    no rows selected
    orcla> select * from scott.dept;
        DEPTNO DNAME          LOC
            10 ACCOUNTING     NEW YORK
            20 RESEARCH       DALLAS
            30 SALES          CHICAGO
            40 OPERATIONS     BOSTON
    orcla> select file#,block#,status from v$bh where objd=(select data_object_id
      2  from dba_objects where owner='SCOTT' and objecT_name='DEPT');
         FILE#     BLOCK# STATUS
             4        131 xcur
             4        134 xcur
             4        132 xcur
             4        135 xcur
             4        130 xcur
             4        133 xcur
    6 rows selected.
    orcla>
    but you do need to be aware of the status. There may be several versions of a block cached.

  • HSRP : routers respond with virtual mac AND physical mac to ARP requests

    Hello.
    I've noticed a very strange behaviour on my two Cisco's 2621 with HSRP configured.
    But first, this is a simplified schema of my current network.
    1. Summary
    - IOS version : 12.2(37)
    - File image : c2600-ik9o3s-mz.122-37.bin
    - R1 is the active router.
    - Both have tagged virtual interfaces : f0/0.10 & f0/0.60
    - NAT functionnality is enabled.
         - f0/0.10 is configured as outside.
         - f0/0.60 is configured as inside.
    2. Configuration samples
    R1
    interface FastEthernet0/0.10
    encapsulation dot1Q 10
    ip address 192.168.0.254 255.255.255.0
    ip nat outside
    service-policy output parent_out_internet
    no ip mroute-cache
    standby 10 ip 192.168.0.2
    standby 10 priority 120
    standby 10 preempt
    interface FastEthernet0/0.60
    encapsulation dot1Q 60
    ip address 192.168.1.254 255.255.255.0
    ip nat inside
    no ip mroute-cache
    no cdp enable
    standby 60 ip 192.168.1.1
    standby 60 priority 120
    standby 60 preempt
    ip nat pool ovrld 192.168.0.2 192.168.0.2 prefix-length 24
    ip nat inside source list internet pool ovrld overload
    R2
    interface FastEthernet0/0.10
    encapsulation dot1Q 10
    ip address 192.168.0.253 255.255.255.0
    ip nat outside
    service-policy output parent_out_internet
    no ip mroute-cache
    standby 10 ip 192.168.0.2
    standby 10 preempt
    interface FastEthernet0/0.60
    encapsulation dot1Q 60
    ip address 192.168.1.253 255.255.255.0
    ip nat inside
    no ip mroute-cache
    no cdp enable
    standby 60 ip 192.168.1.1
    standby 60 preempt
    ip nat pool ovrld 192.168.0.2 192.168.0.2 prefix-length 24
    ip nat inside source list internet pool ovrld overload
    3. Events.
    - When HSRP first runs or when there is a topology change, the active router sends correct ARP gratuitous reply packets (with the virtual MAC address)
    - ARP table is filled in on the Internet router.
    - When the ARP entry in the table expires it asks for the virtual IP mac address (192.168.0.2).
    - R1 responds with the virtual MAC address ---- BUT ---- R2 also responds with its physical mac address !
    - So packets are sent to the wrong router (R2) which can't route any packets because the NAT table is not up to date. I don't even have NAT command to synhronize NAT sessions between routers. But anyway, it should not solve my issue.
    It occurs only on the NAT (outside) interface. On the other virtual interfaces it behaves as expected.
    I don't have any explanations to this behaviour.
    For the moment, I have to keep R2 offline and bring it back online in case of failure.
    I tried several workarounds but I can neither filter ARP packets (no such function) on my router nor on my switch (too restrictive).
    If I forgot any information please ask me.
    Any help would be very much appreciated.

    Hello.
    I've noticed a very strange behaviour on my two Cisco's 2621 with HSRP configured.
    But first, this is a simplified schema of my current network.
    1. Summary
    - IOS version : 12.2(37)
    - File image : c2600-ik9o3s-mz.122-37.bin
    - R1 is the active router.
    - Both have tagged virtual interfaces : f0/0.10 & f0/0.60
    - NAT functionnality is enabled.
         - f0/0.10 is configured as outside.
         - f0/0.60 is configured as inside.
    2. Configuration samples
    R1
    interface FastEthernet0/0.10
    encapsulation dot1Q 10
    ip address 192.168.0.254 255.255.255.0
    ip nat outside
    service-policy output parent_out_internet
    no ip mroute-cache
    standby 10 ip 192.168.0.2
    standby 10 priority 120
    standby 10 preempt
    interface FastEthernet0/0.60
    encapsulation dot1Q 60
    ip address 192.168.1.254 255.255.255.0
    ip nat inside
    no ip mroute-cache
    no cdp enable
    standby 60 ip 192.168.1.1
    standby 60 priority 120
    standby 60 preempt
    ip nat pool ovrld 192.168.0.2 192.168.0.2 prefix-length 24
    ip nat inside source list internet pool ovrld overload
    R2
    interface FastEthernet0/0.10
    encapsulation dot1Q 10
    ip address 192.168.0.253 255.255.255.0
    ip nat outside
    service-policy output parent_out_internet
    no ip mroute-cache
    standby 10 ip 192.168.0.2
    standby 10 preempt
    interface FastEthernet0/0.60
    encapsulation dot1Q 60
    ip address 192.168.1.253 255.255.255.0
    ip nat inside
    no ip mroute-cache
    no cdp enable
    standby 60 ip 192.168.1.1
    standby 60 preempt
    ip nat pool ovrld 192.168.0.2 192.168.0.2 prefix-length 24
    ip nat inside source list internet pool ovrld overload
    3. Events.
    - When HSRP first runs or when there is a topology change, the active router sends correct ARP gratuitous reply packets (with the virtual MAC address)
    - ARP table is filled in on the Internet router.
    - When the ARP entry in the table expires it asks for the virtual IP mac address (192.168.0.2).
    - R1 responds with the virtual MAC address ---- BUT ---- R2 also responds with its physical mac address !
    - So packets are sent to the wrong router (R2) which can't route any packets because the NAT table is not up to date. I don't even have NAT command to synhronize NAT sessions between routers. But anyway, it should not solve my issue.
    It occurs only on the NAT (outside) interface. On the other virtual interfaces it behaves as expected.
    I don't have any explanations to this behaviour.
    For the moment, I have to keep R2 offline and bring it back online in case of failure.
    I tried several workarounds but I can neither filter ARP packets (no such function) on my router nor on my switch (too restrictive).
    If I forgot any information please ask me.
    Any help would be very much appreciated.

  • How do I force my Mac to update to a newer version of a Keynote file on iCloud?

    I teach college and use Keynote on a daily basis. Lately, when I've worked on a Keynote file at home, when I go to my office (the next day) and try to open the file, the newer version won't be available yet to select. I can open the old version, or the new version on Keynote iCloud, but the version on my computer sometimes takes an hour or more to recognize that there is a new version on iCloud. Once it recognizes there is a new file, the download is very fast (my internet connection is fine). Is there a way to force my computer to check for new iCloud files (like the "CHECK FOR AVAILABLE DOWNLOADS" in iTunes)?
    Thanks,
    kevin
    Mac mini (Late 2012), OS X Yosemite (10.10.1)
    MacBook Pro (13-inch Mid 2009), OS X Yosemite (10.10.1)

    Amanda,
    Welcome to Apple discussions.
    If you saved any of the documents using Pages '08, then those docs will only open in '08. What you need to do with them is open them in '08, then do a Save As. At the bottom of the Save As dialog, you'll see an option to save as iWork '06. Choose this option. Once you're sure you've done this with all affected files, drag the '08 folder to the trash, then empty the trash. From now on, all Pages files should open in '06.
    -Dennis

  • Forcing a Mac with 2 connected ethernet ports to use one over the other

    I have a G5 Quad and a Mac Pro that are connected to a large network (including internet) on ETHERNET 1, and they are also directly connected over ETHERNET 2 (using Jumbo Frames). I need to ensure the G5 uses ETHERNET 2, and not ETHERNET 1, to connect to the Mac Pro. They must use both connections. How do I do this?
    Tim

    I've solved the problem. When connecting to the other computer, don't map the drive from the Finder sidebar. Instead, go to the Finder, hit Cmd+K, or select Go > Connect to Server..., then type the IP address of the other computer's ethernet port that you are directly connected to. Then write an Applescript to automatically mount the drive on startup.
    Example Applescript:
    +mount volume "afp://192.168.1.1/"+
    Compile and Save the script as an Application with none of the Options checked. Place the script on the remote computer (the G5 Quad in my situation) in a suitable location like the Documents folder for your Username.
    Next, on the remote computer, open System Preferences > Accounts, and select the correct account. Select the Login Items tab, and click the + to add your Applescript application to the list. After adding the Applescript, check the Hide checkbox so the script runs in the background. Close System Preferences and you're done. Reboot the computer to verify it connects, and voila!
    Tim

  • Is there a way to force my Mac to rescan for a harddrive?

    The hard drive I use for Time Machine sometimes won't remount after plugging it back in to the Firewire port on my Macbook Pro. If I open disk utility it's not even acknowledged as being connected. The only way I've found to get it to remount is to pull the power cord on the hard drive and then plug the power back in (while the firewire is connected the entire time). The hard drive will mount then. The hard drive is a Seagate Freeagent Xtreme 1TB. The drive is seeing when it is connected to the computer because it will power up once it's connected. Is there a way to force the computer to rescan for connected drives? Is there a terminal command or something in Disk Utility that I'm missing?
    Thanks

    Serials are platform specific, so no, you cannot use it directly. A platform swap would be required.
    Mylenium

  • How do I force a Mac Pro Lion RAID 5 rebuild after replacing a failed drive?

    Hi,
    My Mac Pro RAID 5 (with Apple RAID controller card and RAID 5 volume with 3 hard disks) showed degraded RAID set message due to failed drive.  After I repalced the failed drive, I was unable to add it back to the RAID set.  So I tried to removed or deleted this RAID set so that I can rebuild the RAID set from scratch.  No matter what I did, I was unable to delete the RAID set using the RAID Utility.  Can anyone help?  Thanks.

    I have been posting in this forum several times yet I was not getting any help nor comment on my issue from anyone (except Grant above.  Thanks and appreciate your support).
    So I have to help myself by searching various ways to resolve the issue.  I accidentally came across below findings and it solved my problem.  So I thought I will post it here just to share with whoever may run into the same problem.
    When I was trying to try to change to another harddisk, I noticed that I made a mistake in mixing up the drives when I put them back.  That is for the last two drive bays(3 & 4), for some reason I put the disks backwards.  That is drive 3 in Bay 4 and drive 4 in Bay 3.  I did not realize that on the drive mount Apple actually labelled them as 1, 2, 3, and 4 respectively for Bay 1 through Bay 4.
    With the two disks installed in the wrong sequence and even though one of them is a replacement disk, Apple RAID controller card still boot up the RAID set but showing degraded RAID sets and everthing is normal except it would not allow you to make the replacement disk as a global spare.
    After I put the disks in the correct order, I was able to use RAID utility to make the repalcement disk as a spare and the system starting rebudiling the RAID set automatically (thought it took three days to complete).
    Now my system is back to normal working.  So the solution is to insure the disks are installed back to the Mac Pro in the same order (sequence including the replacement disk) when the RAID was set up.  This is such a basic matter and I don't know how I missed it.  Hopefully sharing this experience will help someone who may have similar problem.  At lease this is the first thing to check before going any further.

  • DW 8 won't launch, forces exit--Mac

    Hello--
    I open Dreamweaver 8, and just after the launch screen
    appears, a
    warning message pops up. It says "No document types have been
    found in
    the Configuration/DocumentTypes/ folder. The
    MMDocumentTypes.xml file
    may be missing or corrupted. The application will exit now."
    I am running Mac OS 10.4.10, and I have installed the DW
    8.0.2 updater.
    What next steps can I take to make DW usable?
    Previously, I had installed Studio 8 on a newly wiped Mac
    laptop, then
    brought over my configuration folder and preferences, and
    re-imported
    the sites. All was working well.
    Then, with apparently no change in my system, suddenly DW
    refused to
    launch and gave me only a blank error message. After
    installing the
    8.0.2 update, I am now getting the useful error message
    above.
    Googling suggested renaming the user Configuration folder
    (~/Library/Application Support/Macromedia/Dreamweaver
    8/Configuration),
    so I did. Then when I launched DW, I get an error message
    that just says
    "65016." I click "OK." Then I get the DocumentTypes.xml
    warning
    message again, as above.
    *However*--I looked in the user Configuration folder on both
    my newly
    installed laptop and the clone of my old system before I
    reinstalled
    everything. There is no DocumentTypes folder in either place.
    Yet I was
    using DW 8 for a year or so, and DW MX 2004 before that, on
    the old
    system, and for a few days on the new system. I don't
    understand why
    this folder is suddenly required.
    Thanks,
    Daiya

    Hi Randy,
    Thanks very much, this put me on the right track. Problem
    solved and all
    seems fine now.
    The technote actually doesn't exactly tell me where my
    application
    config folder is, but *knowing* one existed, I checked the
    second most
    logical place (in the Applications folder with the program
    itself--I had
    already checked in the system's Library/Application Support),
    and found
    it, and found DocumentTypes there
    (Applications/Macromedia/Macromedia
    Dreamweaver 8/Configuration/DocumentTypes)
    Caused by user error--I had moved the applications--and
    combining each
    application folder into a joint Macromedia folder was safe
    enough, but
    removing the actual DW application from the DW folder was
    *not*
    okay--although I had left the config folder in the same
    place,
    apparently changing the relationship between the app and the
    folder
    messed it up. I re-assembled the multitude of folders and all
    works now.
    Good to know. I saw a few reports of this, so maybe this will
    help
    someone else in the future. I do technically know that I
    ought to
    immediately test complex suite programs after moving them
    around, but
    apparently I forgot.
    Thanks much,
    Daiya
    Randy Edmunds wrote:
    > Daiya,
    >
    > This TechNote explains the location of both the
    "application" and
    > "user(-specific)" Configuration folders:
    >
    >
    http://www.adobe.com/go/16420
    >
    > There should be a Configuration/DocumentTypes folder in
    at least your
    > application config folder.
    >
    > You should check to see if your new Mac uses the Unix
    case-sensitive
    > file system (sorry I can't remember the exact
    terminology). If so, you
    > need to turn this off as DW does not support it.
    >
    > HTH,
    > Randy
    >
    >
    >> I open Dreamweaver 8, and just after the launch
    screen appears, a
    >> warning message pops up. It says "No document types
    have been found
    >> in the Configuration/DocumentTypes/ folder. The
    MMDocumentTypes.xml
    >> file may be missing or corrupted. The application
    will exit now."
    >>
    >> I am running Mac OS 10.4.10, and I have installed
    the DW 8.0.2 updater.
    >>
    >> What next steps can I take to make DW usable?
    >>
    >> Previously, I had installed Studio 8 on a newly
    wiped Mac laptop,
    >> then brought over my configuration folder and
    preferences, and
    >> re-imported the sites. All was working well.
    >>
    >> Then, with apparently no change in my system,
    suddenly DW refused to
    >> launch and gave me only a blank error message. After
    installing the
    >> 8.0.2 update, I am now getting the useful error
    message above.
    >>
    >> Googling suggested renaming the user Configuration
    folder
    >> (~/Library/Application
    Support/Macromedia/Dreamweaver
    >> 8/Configuration), so I did. Then when I launched DW,
    I get an error
    >> message that just says "65016." I click "OK." Then I
    get the
    >> DocumentTypes.xml warning message again, as above.
    >>
    >> *However*--I looked in the user Configuration folder
    on both my newly
    >> installed laptop and the clone of my old system
    before I reinstalled
    >> everything. There is no DocumentTypes folder in
    either place. Yet I
    >> was using DW 8 for a year or so, and DW MX 2004
    before that, on the
    >> old system, and for a few days on the new system. I
    don't understand
    >> why this folder is suddenly required.

  • Force remote mac to watch my screen?

    I have a MBP as a Media Center hooked up to a projector.
    I control it by sharing its screen with Screen Sharing on Lion with another MBP over wifi. It works fine!
    However I'd like to have the Media Center "observe" my screen, so that my remote screen will end up projected on the wall over wifi. Neat, huh?
    I just couldn't find a way to have the Media Center watch my screen without actually having to go to it and from the Media Center request to Share Screen.
    Is it possible from my laptop to force the Media Center to watch my screen?
    Thanks for your help!

    This sort of networking stuff hasn't changed in some years and (outside of some specific details) isn't particularly dependent on OS X versions, so some of what you've found may well be applicable all the way up to 10.7.
    In general, get yourself a server-grade firewall, and set up a VPN server within the firewall.  (There are commercial and open-source offerings available.)  This gets you secured access to your network as if you were LAN-local, and the firewall deals with both the NAT and VPN together.
    Less desirable (cheaper, more limited, tends to be flaky), use a pass-through-capable firewall, and run the VPN server on the OS X Server.  Why is a pass-through device less desirable?  Because VPNs and NAT operate at cross-purposes.  The VPN wants to identify and maintain security, and NAT works to anonymize the traffic behind one IP.  And when NAT and the VPN get tangled, the connection drops.
    Here's a general write-up on remote access, and with links to more information. 
    And here is why I generally recommend a server-grade firewall.
    And FWIW, don't configure your local network in the 192.168.0.0/24 or 192.168.1.0/24 subnets (or reconfigure your network into another part of one of the three available private address blocks), as these two subnets are commonly used around the world, and having the same subnet on the local network and the target network will mess up the IP routing that's the underpinnings of a VPN connection.

  • Firefox freezes upon opening up the program. Have to force quit (mac) every time. I've reinstalled 5 times.

    I have no idea what's causing this. I used Firefox exclusively for years and one day it just froze. I tried rebooting my computer, and eventually deleting and reinstalling Firefox multiple times. Nothing has helped. It was several months ago that the problem began, so I don't recall exactly what I was doing when it first happened. I've searched my hard drive for leftover remnants of an old Firefox program that might be causing problems, but I've found nothing. I've used Safari ever since and that works fine. I just prefer Firefox so I'd like to be able to use it again. My mac is about 6 years old, using OSX 10.8.5.
    Thanks!

    Unfortunately my music software is not compatible with the new Mac OSX update (it may be in the coming months), so I have to stick with this one for now. Do you think Firefox would really just shut me down like that, just because I'm on a previous operating system?
    I guess I'll just stick with Safari until my Native Instruments Maschine II allows for the Yosemite update.
    Thanks for trying to help out!

  • CS6 Indesign crash on Mac since forced reboot

    Good morning team,
    I'm in big trouble since friday last week. I had to force a Mac reboot 'cause the whole desk was freezing (while moving some korean files to our fileserver). Since then I cannot open Indesign anymore.
    I've had 2 files opened when my Mac crashed, one was already saved, the other wasn't. Im not sad about losing the savings, because I was just starting with a new layout. Anyhow, I need to run Indesign for my work again - immediately.
    I've already tried any mentioned solutions, deleting the recovery files, renaming and deleting Indesign Defaults and SavedData, but nothing works. I hope you can help me find a solution, I have some deadlines today
    Here's the log:
    http://pastebin.com/7eJe1GqC
    If you need any more informations, please just let me know. Thank you for help!
    Ellen
    P.S. System is OSX 10.9.2

    Will ID run in a new user account?
    If it will, go back tot he old account and rename the Adobe Folders in the User Library, then copy them from the new account. If not, uninstall, run the cleaner tool( CS Cleaner Tool for installation problems | CCM, CS6, CS5.5, CS5, CS4, CS3) and reinstall.

  • Mac & Windows (BootCamp) Activations on Same Physical Machine

    To Adobe:
    Please would it be possible to free-up the CS6-Cloud licensing to allow simultaneous activation on both OSX and BootCamp-Windows sides of the same physical Mac machine to count as only one (of the two allowed) activations?  The logic is that it is only one physical machine.  No sales would be lost and it would remove an inconvenience, making CS6 more flexible.
    Like most people, my second activation is normally bound to my workhorse-desktop.  The laptop is what gets used to show stuff (like CS6) to other people at other locations.  Sadly unable to give spontaneous (unplanned) demonstration of CS6 on Mac to someone recently at separate work location with no internet connection available (hence unable to do the "boot windows, deactivate, reboot mac, activate" sequence, during which they might have got bored and gone away in any case...).

    David, after spending hours....and I man hours.... the best answer I get from Adobe is that I can't even have Bootcamp installed! Something about the MAC ID for the computer. What's happening for me is that I can't even deactivate in Windows and the reboot into OSX and activate. I get nothing but errors telling me it's already in use on another computer (meaning Windows). Deactivation means nothing apparently since it's the same physical hardware. Adobe needs to fix this! I'm one person on one machine. I cant be in Windows and OSX at the same time through BootCamp. And even if I was uing Parrallels or somthing lke that, I'm still one guy at one computer.... Adobe are you listening!? FIX THIS!!!!!

  • 851W - mac address changes destination port on bridge

    Hello,
    We have a 851w configured in bridge mode between the wireless lan and the wired local lan.
    The mac addresses of the machines connected through wire keep changing the destination port on where they are registered.
    If they are on FastEthernetX everything works ok, when they are on VLAN1 we loose connection between wire and wireless clients.
    NORMAL OPERATION
    Destination Address  Address Type  VLAN  Destination Port
    0019.7d83.xxxx          Dynamic        1     Vlan1
    0021.8656.xxxx          Dynamic        1     FastEthernet0
    0022.9064.xxxx          Self               1     Vlan1
    ERROR: NO NETWORK
    Destination Address  Address Type  VLAN  Destination Port
    0019.7d83.xxxx          Dynamic        1     Vlan1
    0021.8656.xxxx          Dynamic        1     Vlan1
    0022.9064.xxxx          Self               1     Vlan1
    I tryed to debug using the various debug arp commands but didn't find  any useful info.
    Why does it change the destination port?
    How can I make it stable?
    version 12.4
    no service pad
    service timestamps debug datetime msec
    service timestamps log datetime msec
    service password-encryption
    hostname UM01
    boot-start-marker
    boot system flash:/c850-advsecurityk9-mz.124-11.XW6.bin
    boot-end-marker
    logging buffered 51200 warnings
    dot11 ssid UM01
       vlan 1
       authentication open
       authentication key-management wpa
       guest-mode
       wpa-psk ascii 7 00101615105E3F233C1569
    ip cef
    bridge irb
    interface FastEthernet0
    no ip address
    ip virtual-reassembly
    no dot11 extension aironet
    encryption vlan 1 mode ciphers aes-ccm
    ssid UM01
    speed basic-1.0 basic-2.0 basic-5.5 6.0 9.0 basic-11.0 12.0 18.0 24.0 36.0 48.0 54.0
    channel 2412
    station-role root
    no cdp enable
    interface Dot11Radio0.1
    encapsulation dot1Q 1 native
    no cdp enable
    bridge-group 1
    bridge-group 1 subscriber-loop-control
    bridge-group 1 spanning-disabled
    bridge-group 1 block-unknown-source
    no bridge-group 1 source-learning
    no bridge-group 1 unicast-flooding
    interface Vlan1
    no ip address
    ip tcp adjust-mss 1452
    bridge-group 1
    bridge-group 1 subscriber-loop-control
    bridge-group 1 spanning-disabled
    interface BVI1
    description Bridge to Internal Network
    ip address 10.10.189.254 255.255.255.0
    no ip http server
    no ip http secure-server
    no cdp run
    control-plane
    bridge 1 protocol ieee
    bridge 1 route ip
    line con 0
    privilege level 15
    no modem enable
    line aux 0
    line vty 0 4
    privilege level 15
    transport input ssh
    scheduler max-task-time 5000
    end

    FYI, the solution we found was to force the mac address of each wired computer to a physical interface and vlan 1.
    This seems to have stabilize the communications, no more mac address hopping between destination port.

Maybe you are looking for

  • Form personalization for a read only responsibility for a custom form

    Hi, I have a read only responsibility. My requirement is to make a custom form updatable through this responsibility but wth a condition that only the specific custom form should be updatable and rest all other form accessed through read only respons

  • Error V1134, account assignment error during PO creation

    Hello All, I am facing one issue while creating a purchase order w.r.t. PR. My scenario is mentioned below... 1) A sales order is created for a part w.r.t. quantity contract 2) PR is created w.r.t. a sales order 3) I am trying to create a purchase or

  • ITMS and the Hard Drive Crash

    I'm sure this has come up a million times before, but a search didn't yield the answer I was looking for. I have my iTunes music and movies on an external HD. Last night that HD started making a weird noise, as if the rocker arm in the drive is stuck

  • Problem Compression PDFs on Preview

    When I try to compress a PDF file in Preview using Save As and then "Reduce File Size" in the filter, the new file created is actually BIGGER than the old file -- more than twice as big, actually. Can anyone explain what I might be doing wrong?

  • Is there a spam filter for email?

    Getting dozens of spam emails on iPad and iPhone each day.   Is there a filter available?