How to advertise networks in BGP

Hi,
We r using BGP on our MPLS rtr..
now we have added new network on the existing BGP setup.....but unable to show the same under BGP table.
router bgp xxxxx
bgp log-neighbor-changes
neighbor 10.X.X.185 remote-as XX55
address-family ipv4
  neighbor 10.X.X.185 activate
  no auto-summary
  no synchronization
  network 10.X.62.0 mask 255.255.255.0   -----> This network we have added
exit-address-family
But not able to get the same  using the command sh ip route | i 10.X.62 but we are able to get the entry for 10.X.51 which has been already added.
sh ip route | i 10.X.51
B       10.X.51.0/24 [20/0] via 10.X.X.185, 1w6d
I am working with BGP for the first time......could you people help on the same ?
Regards,
TB

Hi Mark,
As per the doc you have provided where it is saying that, by default auto summary is enabled on BGP and we need to have it enabled to advertise the network. Just fine below the configuration which I have shared earlier .....where  no Auto-Summary command is there. So, whether we need to enable the same.
router bgp xxxxx
bgp log-neighbor-changes
neighbor 10.X.X.185 remote-as XX55
address-family ipv4
  neighbor 10.X.X.185 activate
  no auto-summary
  no synchronization
  network 10.X.62.0 mask 255.255.255.0   -----> This network we have added
exit-address-family
Please check the same and suggest.
Regards,
TB

Similar Messages

  • How do I network my desktop printer with my other MAC laptops? I forgot how to do it in the settings

    How do I network my laptops to my printer? I forget what steps to use in Settings.

    You posted in the iMac (PPC) community.
    You would do better by posting in the "laptop" forum of the model "laptop" that you have.   Your questions has nothing to do w/iMacs (PPC).

  • How to configure network virtualization in SCVMM 2012 R2 with two host

    hi everyone... can you teach me how i configure networking in my infrastructure..
    i am getting confuse that i have 2 phisical server, i don't know to set the netwokring in scvmm. Every best practice, i found in internet is using more than 2 physical server.
    i have been tried before with the networking which i want..but it failed...
    any one help me please...

    This whitepaper should explain the required steps to get this working.
    http://gallery.technet.microsoft.com/Hybrid-Cloud-with-NVGRE-aa6e1e9a
    The whitepaper will use more than two hyper-v hosts, but you'll get the picture.
    You can have 1 host to run your NVGRE VMs, while the other host should be dedicated to run the virtualization gateway VMs.
    -kn
    Kristian (Virtualization and some coffee: http://kristiannese.blogspot.com )

  • How do I network my Mac book pro with my Mac air?

    Hi - new at this Mac stuff: how do I network my Mac book pro with my Mac air? I am really looking to just share my photos from one to the other.

    Connect them both to the same router.
    They should show up in the left column of Finder under Shared.

  • How to show network status in top toolbar?

    how to show network status in top toolbar? Network preferences is there, but network status has disappeared on last reset of Airport Express, but may not be connected. Thanks in advance for practical help

    Interestingly, in my experience, using the method described above of unchecking the "Show Connected Servers" box in the Finder Preferences makes no difference in what I can put in the sidebar. I was able to move a sub-folder of a shared disk to the Favorites section of the Finder Sidebar, but nothing else. (i.e. I could not add the shard disk itself to the sidebar – either to the devices, favorites, or any other section, and I could only add a subfolder of the shared disk to the favorites section – not to the devices section or any other section). This was the same whether I had "Show Connected Servers" checked or not.
    I'm running OS X Mavericks, and the setup I have is with a previous generation Time Capsule (i.e. the short, square kind that you could buy before the most recent taller variety came out last year), with a LaCie 3 TB USB 3.0 external drive plugged into the USB port of the Time Capsule. I'm then accessing this network drive over WiFi. The differences in what I'm seeing may be due to some change they made in the way Mavericks handles these setups.
    I could also just be misunderstanding what you're saying, but I thought I'd add this in case anyone else gets similar results so that they'd know they're not alone. Let me know if I'm missing something here.

  • How to monitor network load

    hi,
    How to monitor network load i.e. bytes sent/recieved.

    what is your operating system?
    refer the links, hope this may helps you.
    http://hoopercharles.wordpress.com/2010/08/19/network-monitoring-experimentations-7/
    http://www.remote-dba.net/t_tuning_monitoring_network.htm
    http://www.activexperts.com/activmonitor/check/database/oracle/

  • How to calculate network bandwidth for dataguard 11.2

    Hi all,
    have a customer who needs to setup a new data guard environment in release 11.2.0.2. Primary site will be in Italy, standby site will be in New York.
    He would like to know the network bandwidth between primary and standby site needed to obtain the maximum performance in redo transport with or without compression option.
    I found a lot of threads and docs indicating some formulas but none of them explained how to:
    - calculate network bandwidth on a rac system (having a single instance standby database)
    - calculate network bandwidth in case of use redo transport compression
    - calculate cpu consumption if using redo transport compression
    Could you please give any advice?
    A.M.

    Hi,
    customer made ma a lot of technical question just like the following:
    - which are the main factors determining the 30% overhead indicated in the network bandwidth calculation
    Required bandwidth = ((Redo rate bytes per sec. / 0.7) * 8) / 1,000,000 = bandwidth in Mbps
    - how much bandwidth will I gain if I apply redo transport compression and why redo transport compression and why usually the gzip utility gives me 5X less and oracle compression gives me a maximum of 50-60% of compression even if it uses the same engine of zlib compression as indicated below?
    Data Guard redo transport compression uses the same zlib compression engine at level 1 as gzip -1. To estimate the compression ratio you can achieve using Data Guard redo transport compression, first compress an archived redo log file with gzip:
    $ gzip -1 <archive redo logfile>.arc
    Then use the gzip --list option to explicitly display the compression ratio:
    $ gzip --list <archive redo logfile.arc>.gz
    Note: Use gzip version 1.3.3 or later. Refer to www.gzip.org for the latest information on gzip.
    Could anyone give me any direction?
    Thank you
    AM

  • How to give network path while creating oracle directory.

    I have created
    CREATE OR REPLACE DIRECTORY TESTDIR AS '\\168.176.33.117\TESTDIR';
    but through this path i m not able to create text file.
    create or replace procedure WriteTest is
    f utl_file.file_type;
    s varchar2(200) := 'this is some info';
    begin
    f := utl_file.fopen('TEST2DIR','sample2.txt','W');
    utl_file.put_line(f,s);
    utl_file.fclose(f);
    end WriteTest;
    Help how to give network path while creating oracle directory.
    --when i give local machine path then it will create at local machine where oracle is installed. but not able to create at other machine.
    Zakir

    Well for starters your directory object is called TESTDIR and in your fopen statement you are referring to TEST2DIR.
    On top of that I'm not sure oracle is happy to refer to network locations. I think you have to map it to a regular drive mapping (shared directory) type path. Can't say I've every tried to do it though.

  • How to get  Network Interface Cards information ?

    hi all,
    how to get Network Interface Cards information and tcp window size by java ?

    807262 wrote:
    how to get Network Interface Cards information Have a look at [url http://download.oracle.com/javase/6/docs/api/java/net/NetworkInterface.html#getNetworkInterfaces%28%29]NetworkInterface.getNetworkInterfaces()
    tcp window sizeWhich one?
    SO_RCVBUF ^[url http://download.oracle.com/javase/6/docs/api/java/net/Socket.html#getReceiveBufferSize%28%29]Socket.getReceiveBufferSize()^
    SO_SNDBUF ^[url http://download.oracle.com/javase/6/docs/api/java/net/Socket.html#getSendBufferSize%28%29]Socket.getSendBufferSize()^

  • How to remove network devices through powershell? (scom 2012)

    Hi
    Could anyone says how to delete network device in SCOM 2012 through powershell?
    In 2007 we have Get-RemotelyManagedDevice.
    I have a big number network device in monitoring and now need delete some of them with specific filter, all switches.
    How to do it?
    Thanks
    Alex

    The devices were discovered by an old Management Server that was reinstalled.
    I finally got those devices out of my SCOM environment using this SQL query (just replace networkdevicename):
    UPDATE
    BaseManagedEntity
    SET
    isdeleted=1
    from
    BaseManagedEntity where
    BaseManagedEntityId in
    (select
    BaseManagedEntityId from
    BaseManagedEntity where
    displayname like
    '%networkdevicename%')

  • How to create network activity

    how to create network activity using bapi_network_maintain bapi
    i am getting the error as incorrect object key for activity
    reagrds

    ok

  • How add virtual network in my guest domain?

    I've installed ldom on T1000 in my Corp. There are primary, ldg1,ldg2.
    bash-3.00# ./ldm list
    NAME STATE FLAGS CONS VCPU MEMORY UTIL UPTIME
    primary active -n-cv SP 4 1G 0.5% 15h 59m
    ldg1 active -n--- 5000 8 4G 13% 82d 15h 15m
    ldg2 active -n--- 5001 4 1G 0.2% 15h 44m
    But don't understand that process an adding virtual network in ldg2:
    I do:
    1. #ifconfig bge2 unplumb
    2.get mac bge2 and do: #ldm add-vsw mac-addr=00:14:4f:83:46:18 net-dev=bge2 primary-vsw2 primary
    3.reboot #shutdown -y -g0 -i6 --------> after vsw2 don't show up in my primary domain!!!! WHY?
    4.ldm add-vnet vnet5 primary-vsw2 ldg2
    5.mv /etc/hostname.bge2 /etc/hostname.vsw2
    6.Status ldg2:
    NETWORK
    NAME SERVICE DEVICE MAC
    vnet3 primary-vsw0@primary network@0 00:14:4f:fb:ea:1f
    PEER MAC
    primary-vsw0@primary 00:14:4f:f9:d4:ab
    vnet1@ldg1 00:14:4f:f8:3f:2e
    NAME SERVICE DEVICE MAC
    vnet4 primary-vsw1@primary network@1 00:14:4f:fb:63:3c
    PEER MAC
    primary-vsw1@primary 00:14:4f:f9:3c:de
    vnet2@ldg1 00:14:4f:fa:18:75
    NAME SERVICE DEVICE MAC
    vnet5 primary-vsw2@primary network@2 00:14:4f:f9:df:f7
    PEER MAC
    primary-vsw2@primary 00:14:4f:83:46:18
    7.When I do #/usr/sbin/dladm show-link ---> vnet not exist!
    When error in my configuration?
    And How reconfigure virtual network in prymary so that it exist in ldg2?
    Please help.

    After you ran the ldm add-vsw command did you run a drvconfig? If not then try that and check to make sure the entries under /dev/vsw0, 1, 2 etc all exist and are correctly linked.
    Paul.

  • How many physical Network Adapter required for to implement NVGRE Gateway ?

    Hello Guys,
    Would like to know how many physical Network Adapter required to implement network virtualization including the technologies such as Windows Azure Pack| system center 2012 R2 & Hyper-V 2012 R2.
    Thanks 
    NM-BG

    A quick search of TechNet will turn up all sorts of step-by-step and overviews and blogs with lots of information about how to configure and setup.  Minimum of two.  Actual configurations may vary according to business needs and requirements.
    . : | : . : | : . tim

  • How to reverse network cost

    Hi All,
    Can someone tell me how to how to reverse network cost
    done thru cj9k
    to bring back the project to its originall status
    Thanks,
    Regards,
    Mercy

    Hi Mercy,
    The CJ9K do the plan costs calculation,  the FI posting and purchase cause the actual costs and commitment. They have nothing to do with each othter.
    To reserve the plan costs is somehow strange requirement. To remove the costing reporting information, the CJEN (with delete flag set) may the right one.  But there is no transaction to reserve the plan costs.  You can initialize the costs relevant information, e.g. planned work = 0, then re-calculate the network.
    Kind regards,
    Zhenbo

  • How to disable Network Address Translation

    how to disable Network Address Translation

    Hi KalaiArasu.K,
    As Chen V said, please tell us more detailed information about your requirement.
    In addition, please refer to the two following links to learn how to disable Network and computer from Explorer Navigation Pane:
    How to Add or Remove Network from the Windows 7 Navigation Pane
    http://www.sevenforums.com/tutorials/39699-network-add-remove-navigation-pane.html
    How to Remove “Computer” from Windows 7 Explorer Navigation Pane?
    http://www.askvg.com/how-to-remove-computer-from-windows-7-explorers-navigation-pane/
    Note: Since the website is not hosted by Microsoft, the link may change without notice. Microsoft does not guarantee the accuracy of this information. What’s more, incorrectly editing the registry
    may severely damage your system. Before making changes to the registry, you should back up any valued data.
    For your infomation, plase refer to the following article to learn how to configure a Registry Item via GPO:
    Configure a Registry Item
    http://technet.microsoft.com/en-us/library/cc753092.aspx
    Regards,
    Lany Zhang

Maybe you are looking for