How to manage route entries on user Mac laptop?

Hi,
I have several Mac's in a small office and one has route entries no other Mac show. How can I permanently rid these entries. I have restarted the router and then the Macs and this has not worked. My route table from a netstat has some of the following entries:
Routing tables
Internet:
Destination Gateway Flags Refs Use Netif Expire
default 192.168.1.1 UGSc 321 0 en0
default 192.168.1.1 UGScI 1 0 en1
127 localhost UCS 0 0 lo0
localhost localhost UH 2 409 lo0
169.254 link#4 UCS 0 0 en0
172.16.97/24 link#9 UC 1 0 vmnet8
172.16.97.255 link#9 UHLWbI 3 464 vmnet8
172.16.227/24 link#8 UC 2 0 vmnet1
172.16.227.1 0:50:56:c0:0:1 UHLWI 0 10 lo0
172.16.227.255 link#8 UHLWbI 2 666 vmnet1
192.168.1 link#4 UCS 6 0 en0
192.168.1 link#5 UCSI 2 0 en1
192.168.1.1 0:26:bb:71:8a:d5 UHLWI 344 638 en0 316
192.168.1.1 link#5 UHLWI 1 0 en1
192.168.1.10 link#4 UHRLWI 0 32 en0
192.168.1.40 localhost UHS 4 312 lo0
I want to delete the routes starting 172.16.n.n and wonder how they got into the route table; what type of device they are; and how to remove them.
I am just a standard user with some limited UNIX experience. I cannot switch user to root in a Mac Terminal screen, as I do not know what the 'root' SU password is. But I have administrative user rights on the Mac and the Router.
Thanks,
Don

Yes.
VMWare (and Parallels as well, for that matter) offer networking services in a variety of modes: Bridging, NAT and Host-only. To be able to connect VM's "internally" for NAT and Host-only networking, VMWare itself needs to provide something like a "virtual router" for each of those services.
There are three private address spaces defined by RFC1918. 10.0.0.0/8, 172.16.0.0/12 and 192.168.0.0/16. In your case, your standard internal IP addresses used on your network are in the 192.168.0.0/16 class and VMWare has chosen two addresses in the 172.16.0.0/12 range for vmnet1 and vmnet8.
eliminating them will kill network connectivity for your VM's. Plus, the next time you reboot, VMWare will just recreate them anyway - you can see the kernel messages in the Console.

Similar Messages

  • My family put multiple devices on the icloud, and I need to know how to manage duplicate entries.  Specifically contacts.  If I fix the contact list on my pc will it push the info out to the other devices and maintain it correctly?

    My family put multiple devices on the icloud, and I need to know how to manage duplicate entries.  Specifically contacts.  If I fix the contact list on my pc will it push the info out to the other devices and maintain it correctly?

    All devices signed into the same iCloud account will finish up with the same contacts. Of course if prior to joining iCloud two family members each had an entry for Uncle Fred, then you will finish up with two contact cards for Uncle Fred, and so on. If you tidy this up on your computer then the changes will propagate to everyone else.

  • How do you drag and drop using mac laptop?

    how do you drag and drop using mac laptop?

      As said above, you can click down, ons use the other finger to drag the object.  I had turned on the setting to use three-finger drag, so you can drag objects with three fingers.  To change gesture settings, go to the system preferences>trackpad.  Here you can also see all of the gestures of Mac OS X.

  • How to save routing entries permanently after route add

    Hi guys,
    I have added routing entries through route add command. I know i can add routing entries permanently thru -p option in route add command but didin't use that option. How to save those routing entries now?
    Thanks...

    The filename you are looking for is /etc/inet/static_routes which is available only on Solaris 10 update 3 or later:
    root_sol10u3# route -p add -net 192.168.138.0/24 192.168.136.1
    root_sol10u3# cat /etc/inet/static_routes
    # File generated by route(1M) - do not edit.
    -net 192.168.128.0/22 192.168.136.1
    -net 192.168.138.0/24 192.168.136.1
    -net 172.31.68.0/24 192.168.149.253
    -net 172.31.69.0/24 192.168.149.253
    root_sol10u3#For Solaris 10 update 2 or earlier, persistent static routes are not implemented. Additionally, the old RC script method suggested above also will not work for Solaris 10 given the host isn't always guaranteed to reach the "multiuser" milestone and subsequently run the legacy /etc/rc*/S* scripts (say if a filesystem fails to mount). For those releases, you should create a new manifest file as follows:
    root_sol10u2# cat /var/svc/manifest/network/RKstatic-routes.xml
    <?xml version="1.0"?>
    <!DOCTYPE service_bundle SYSTEM "/usr/share/lib/xml/dtd/service_bundle.dtd.1">
    <!--
            Static Route SMF Manefest
            To be replaced by official Sun mechanism in next solaris release
    -->
    <service_bundle type='manifest' name='RKstatic-routes'>
    <service
      name='network/RKstatic-routes'
      type='service'
      version='1'>
        <create_default_instance enabled='true' />
        <single_instance/>
        <dependency name='network'
            grouping='require_any'
            restart_on='error'
            type='service'>
                <service_fmri value='svc:/network/service' />
        </dependency>
      <exec_method
        type='method'
        name='start'
        exec='/lib/svc/method/RKstatic-routes start'
        timeout_seconds='60' />
      <exec_method
        type='method'
        name='stop'
        exec='/lib/svc/method/RKstatic-routes stop'
        timeout_seconds='60' />
      <property_group name='startd' type='framework'>
        <propval name='duration' type='astring' value='transient' />
      </property_group>
      <stability value='Unstable' />
    </service>
    </service_bundle>
    root_sol10u2#Then create the method script:
    root_sol10u2# cat /lib/svc/method/RKstatic-routes
    #!/bin/sh
    # RKstatic-routes
    # To be called by the network/RKstatic-route SMF service
    ACTION=${ACTION:-add}
    setup_routes () {
    #Route to networks.
    /usr/sbin/route $ACTION net 172.1.0.0 -netmask 255.255.0.0 10.1.0.0
    /usr/sbin/route $ACTION net 172.2.0.0 -netmask 255.255.0.0 10.2.0.0
    case "$1" in
        start)
            echo "${ACTION}ing static routes"
            setup_routes
        stop)
            ACTION=delete
            echo "${ACTION}ing static routes"
            setup_routes
            echo "Usage: $0 {start|stop}"
            exit 1
    esac
    root_sol10u2#Then, import and enable/start the service:
    root_sol10u2# svccfg -v import /var/svc/manifest/network/RKstatic-routes.xml
    root_sol10u2# svcadm enable network/RKstatic-routes
    root_sol10u2# To stop:
    root_sol10u2# svcadm disable network/RKstatic-routes
    root_sol10u2# For posterity, here is a pre-Solaris 10 version:
    root_sol9# cat /etc/init.d/staticRoutes.sh
    #!/bin/sh
    case "$1" in
            start)
                    test -f /etc/routes.conf || exit 0
                    while read type route gateway
                    do
                            /usr/sbin/route add $type $route $gateway
                    done < /etc/routes.conf
            stop)
                    test -f /etc/routes.conf || exit 0
                    while read type route gateway
                    do
                            /usr/sbin/route delete $type $route $gateway
                    done < /etc/routes.conf
                    echo "Usage: /etc/init.d/routes { start | stop }"
    esac
    root_sol9# cat /etc/routes.conf
    172.1.2.0/24 172.1.2.4
    172.1.3.0/24 172.1.3.4
    root_sol9# ln -s /etc/rc2.d/S70staticRoutes /etc/init.d/staticRoutes.sh
    root_sol9#Best Regards,
    Bryan Wood

  • How to manage the payment approver users?

    Hello community,
    I would like to understand more on the payment approval process in SAP Business ByDesign. Despite it is quite easy to find the payment approval process in the help center, it is really hard to find how to manage to whom the payment approval request is sent. How can a system administrator can decide which users have the faculty to approve payments? How to change/update the list of approver users?
    Of course I have the rights to manage all users by assigning them business roles and access rights. I have access to all workcenters.
    Thank you in advance for your help.
    Luca

    Hi Luca,
    You can define threshold amounts for payment approvals depending on company, payment method, and user. No task will be created if the amount of the outgoing payment is below the specified threshold.
    You can define this threshold for both incoming and outgoing payments on the Fine-Tune task Business Task Management for Payment and Liquidity Management
    After maintaining a threshold amount to trigger the approval process, you can define who is the approver via Application and User Management work center, Employee Work Distribution view. In the Finance and Administration group, define the approvers within Approver for Liquidity Management.
    The approval task is then sent to all approvers that you've maintained. If the task is completed for one of them, the payment gets approved. If there is no approver maintained, the task is sent to all authorized managers.
    Please, mark my reply as answered or helpful if this answers your question.
    Additionally, I'd also suggest you to post financial related questions on the Financial Management forum (http://scn.sap.com/community/bydesignbc/fm), which would have a greater visibility from our financial experts team.
    Thanks a lot.
    Best Regards,
    Alexandre.

  • How to manage TNS entry in the OID ?

    Hello,
    We are in our way to implement OID to replace multiple TNSNAME.ora files.
    We are looking for the adequate tool to manage TNS entries in the OID.
    Does anybody use a Web interface to manage such entry ? or the mandatory tool is Oracle Directory Manager ?
    Is there another tool ?
    Thank in Advance.
    Jerome.

    The tool you use to manage the tns entries in the OID is Net Manager.
    Once you have ldap defined in your sqlnet.ora
    NAMES.DIRECTORY_PATH = (LDAP, TNSNAMES)
    And a valid ldap.ora file
    DIRECTORY_SERVERS=(oidhost:389:636)
    DEFAULT_ADMIN_CONTEXT = "dc=company,dc=com"
    DIRECTORY_SERVER_TYPE = OID
    You will then see that the directory and it's service names are available for management in the same way that the local tnsnames.ora entries.
    Alan...

  • How to test routing entry performance in ASR 9000 ?

    I have tester (ixia). It have 2 port TE, but each port on asr 9000 has limited about 500,000 prefix. What should I do?
    best regards

    I want to test how many maximum routing table prefixes of asr 9000 follow to cisco document is real ?
    But,It tester limited has 2 interface. Now, I connected point-to-point. Tester == ASR 9000
    I can't send prefix over 1M (500+500). Do you have any idea to send prefix to follow a cisco document ?
    Thanks.

  • How do i transfer photos from my mac laptop to my iphone?

    how do i transfer my photos from my mac laptops to my iphone

    Connect your phone to your Mac, open iTunes, click on the name of your phone in iTunes, go to the Photos tab of your iTunes sync settings, select Sync Photos from and select the source (such as iPhoto), then click Apply at the bottom to sync your phone.

  • How do I install apps on new mac laptop

    Just purchased a MacBook Air.  I do not know how to transfer my Apps onto my Mac.  Help?

    There is no officially supported way to install apps without using the AppStore.  This is the way the iPhone is designed to work.
    If that does not work for you or whomever will be using the device, then maybe an iPhone is not the right solution for that person.

  • HT201364 how do i increase memory of my mac laptop from 1g to 2g to run lion

    How Can I increase the mamory of my (Older) Mac Laptop from 1G to 2G to run lion?
    Thank you

    Check the computer's documentation for instructions, or append the last three characters of its serial number to http://www.everymac.com/ultimate-mac-lookup/?search_keywords= and load the page for information.
    (98339)

  • How to manage affectaion of the user equipment.

    Hi Experts
    In the management of SAP hardware on each equipement is assigned to a user (number), please how can we make this setting on SAP, Also How can we manage this change of assignment (Changing the number) while keeping history assignments for each equipment ?
    Thanks in advance.

    Hi Experts,
    Is it possible to assign the number of the user equipment in the equipment file ( Each PC is used by a person using it ) ?
    Is what we can manage this affectaion when changing the user  ?
    Otherwise, is there any other method to configure and manage this situation ?
    Thinks in advance.
    Edited by: yahya el hammami on Mar 30, 2009 7:00 PM.
    Edited by: yahya el hammami on Mar 31, 2009 10:40 AM

  • How to manage HTML DB end users in Oracle Database 10g Express Edition?

    I successfully installed Oracle XE on my Windows/XP PC.
    I followed 'Getting Started Guide' and created a new application using the hr.employees table.
    I could run this application by logging in as hr/hr.
    How can I create other HTML DB end users to run this application?
    I can only create database users in Oracle XE environment.
    Help needed....

    This MyApp application (Application 100) was created by the HR Oracle account.
    I could use
    http://127.0.0.1:8080/htmldb/f?p=100
    to run this application by logging in as hr/hr .
    For the above URL, if I logged in as anotherOracleAccount/password, I got the 'Invalid Login Credentials' message.
    As you said, I could use
    http://127.0.0.1:8080/htmldb/f?p=4550
    to get into HTML DB of the Oracle XE environment by logging in as anotherOracleAccount/password.
    Since MyApp is using the HR-owned 'employees' table, should we grant some privileges on hr.employees to anotherOracleAccount?
    I tried this, I still got the 'Invalid Login Credentials' message.

  • How to manage house full of iPods, Macs and a PC

    We're a family of four. Each has a Mac notebook computer (all Leopard) and there's a Windows box on hand for Quicken and gaming. All five computers have iTunes. My sons each have iPods and their own iTunes account, but our main trove of music lives on the PC. There's a home wifi network of course.
    Is there some way we can all share a single iTunes account and library so that we can avoid duplication and each have access to the same music? Specifically, could my sons have a given AAC song on BOTH their iPods by this means? It seems absurd for two kids in the same home to have to buy a given album twice. It would be especially nice if we could all access and add to a central iTunes trove from all our computers.
    Perhaps there's a document somewhere that addresses this? Many thanks for any suggestions.

    If you have an external HDD you can plug that into your wireless router (some routers doesn't let you do that so read the manual, but if its an Apple router then yes and via USB only). Consolidate all the music in that external hard drive. To do that, first its best to put all the collections in one computer so that one iTunes have all the songs. After you done that move that iTunes folder which have all the songs from all 4 members into the external HDD. Finally open iTunes while holding down the option key. Click Choose Library. Navigate to the external HDD. Repeat that for all 5 computers so that each iTunes will know where to look for the music, which is located in the network external HDD. And for each member, you can create folders and playlists just for them. Though this is great it wouldn't have any privacy. You might just know which and what kinds of songs they're listening to. They might not like that idea. And if they have videos or other contents, well... I know this is a lot of steps so if you need further detailed instructions, just reply.

  • How to Manage Group of database users

    hellooooo
    how i can create user(application administrator) who have responsability of group of user as a follow:
    user administrator1
    The group of users only (user1_1, user1_2, user1_3 ..... etc)
    And also user administrator2
    The group of users only (user2_1, user2_2, user2_3 ..... etc)
    And so on
    So that any one of them (administrator1, administrator2, ... etc) can create or delete or modify users and
    set roles and read all roles and privileges ,only on users that belong to them (administrator1, administrator2, ... etc).

    Hi Forstmanon,
    As far as I know, there is no way with SQL to restrict CREATE USER or ALTER USER statements to specific user accounts.
    So what you intend to do seems impossible with SQL.Correct me, what could be the problem.. ?? As they are privi's too which are assigned to specific user. :-) I agree that grouping can't be carried out.
    OP,
    hellooooo
    how i can create user(application administrator) who have responsability of group of user as a follow:
    user administrator1
    The group of users only (user1_1, user1_2, user1_3 ..... etc)
    And also user administrator2
    The group of users only (user2_1, user2_2, user2_3 ..... etc)
    And so on
    So that any one of them (administrator1, administrator2, ... etc) can create or delete or modify users and
    set roles and read all roles and privileges ,only on users that belong to them (administrator1, administrator2, ... etc).As you have stated, try to check the what all roles (Privileges required - precisely by User..) and assigned that privs to a specific role. Next have to two different Administrators Accounts (Perhaps, if you are providing sysdba to them, then can perform any thing across the users - grouping might not possible).
    - Pavan Kumar N
    - ORACLE OCP - 9i/10g
    https://www.oracleinternals.blogspot.com

  • How to manage brightness on a 27" mac with windows and a windows keyboard

    My problem is that since the imac doesn't have hardware controls of the monitor I don't know how to adjust brightness or swich the monitor or even eject media from the keyboard (but this is not important as I cand do it by soft).
    Addicionally to avoid incompatibilities and be able to use smartcards I'm using a windows keyboard.
    Is there any way to assign or use monitor controls to my windows kwyboard?
    Thank you.

    you can adjust the brightness in
    the video card software in my case it's amd
    I right click on my desktop and in the context menu choose AMD catalyst control center
    and adjust it there
    if you have nvidia they have a contol panel like it
    if you can tie it to a shortcut on your keyboard depend on what features
    amd / nvidia's control panels support in that direction

Maybe you are looking for

  • Need help with edit issue...

    I've got a edit that i was working on in FCp 5.1.2 and reinstalled my OS and then FCP 6...now the edit looks correct by the thumbnails, but the wrong clips show up....re connect media doesn't fix it. it seems that the original master clip outside of

  • Error when deploying ear with war module.

    Can somebody help me with a problem? This problem is realy strange. I have three projects: ordinary project (jar project), war project and ear project. The war project uses classes form jar project and it is a part of ear project. There is an abstrac

  • Measure to dynamically change based on prompt selection

    Hi Experts, My requirement is, if I select a business segment (from a drop down prompt), it has show one of measure in the report and if I change the prompt value, it has to show a different measure. i.e., It should work like a column selector, but m

  • Page format for landscape page layout in smart forms

    Hi Guys, Please give the solution for which page format used for landscape layout used for creating smartforms.

  • Deadlock captures: "FETCH API_CURSOR..." but not query behind it......

    This article shows how to "unmask" the sql query behind a FECTH API_CUSOR http://www.sqlskills.com/blogs/joe/hunting-down-the-origins-of-fetch-api_cursor-and-sp_cursorfetch/ that is shown in a deadlock graph. But if only applies if one can capture th