VMware NSX-T Data Center: Install, Configure, Manage [V3.0]

 View Only
  • 1.  Configuration VYOS Router

    Posted Jan 28, 2021 11:25 AM

    hi guys, 

    i am trying mount a lab nsx-t 3.0 is possible to find the configuration VYOS router anywhere?

    Regards.



  • 2.  RE: Configuration VYOS Router

    Posted Jan 28, 2021 11:45 AM

    The VATC guide has the details, the VYOS is implemented in a VM that you can download from the VATC portal.

    (Or you can get a prep kit and "show run" its config)



  • 3.  RE: Configuration VYOS Router

    Posted Mar 12, 2021 04:38 PM

    Hi.

    VYOS from VATC repository has not configured interfaces.

    I just looked in VATC guide form NSX-T DC ICM 2.4. There is detailed information about VYOS configuration from zero (pages 25 - 26, link - https://communities.vmware.com/t5/VMware-NSX-T-Data-Center-Install/VATC-Lab-Setup-Guide-NSXTICM24-posted-June-21st-2019/ta-p/2788919/jump-to/first-unread-message )

     

     



  • 4.  RE: Configuration VYOS Router

    Posted Mar 12, 2021 04:52 PM

    As I said, the VATC guide has the details.

    (Or you can see them in a kit



  • 5.  RE: Configuration VYOS Router
    Best Answer

    Posted Mar 12, 2021 04:54 PM

    This is a NSX-T 3 T&O config:

    vyos@sa-vyos-01:~$ sh config
    interfaces {
    ethernet eth0 {
    address 172.20.10.1/24
    description Management
    duplex auto
    hw-id 00:50:56:02:ab:2a
    mtu 1600
    smp_affinity auto
    speed auto
    }
    ethernet eth1 {
    address 172.20.11.1/24
    description Production
    duplex auto
    hw-id 00:50:56:02:ab:32
    mtu 1600
    smp_affinity auto
    speed auto
    }
    ethernet eth2 {
    address 192.168.100.1/24
    address 192.168.110.1/24
    address 192.168.120.1/24
    address 192.168.130.1/24
    address 192.168.140.1/24
    address 192.168.150.1/24
    address 192.168.160.1/24
    address 192.168.170.1/24
    description Edge-Network
    duplex auto
    hw-id 00:50:56:02:ab:34
    mtu 1600
    smp_affinity auto
    speed auto
    }
    ethernet eth3 {
    duplex auto
    hw-id 00:50:56:02:ab:35
    smp_affinity auto
    speed auto
    }
    loopback lo {
    }
    }
    protocols {
    bgp 200 {
    maximum-paths {
    ebgp 4
    }
    neighbor 192.168.100.2 {
    remote-as 100
    }
    neighbor 192.168.110.2 {
    remote-as 100
    }
    neighbor 192.168.120.2 {
    remote-as 100
    }
    neighbor 192.168.130.2 {
    remote-as 100
    }
    neighbor 192.168.150.2 {
    remote-as 100
    }
    neighbor 192.168.160.2 {
    default-originate {
    }
    remote-as 100
    }
    neighbor 192.168.170.2 {
    remote-as 100
    }
    parameters {
    log-neighbor-changes
    router-id 192.168.100.1
    }
    redistribute {
    connected {
    metric 66
    }
    }
    }
    static {
    route 0.0.0.0/0 {
    next-hop 172.12.10.10 {
    }
    next-hop 172.20.10.10 {
    distance 1
    }
    }
    route 172.16.50.0/24 {
    next-hop 192.168.120.2 {
    distance 1
    }
    }
    route 172.16.150.0/24 {
    next-hop 192.168.120.2 {
    distance 1
    }
    }
    }
    }
    service {
    ssh {
    port 22
    }
    }
    system {
    config-management {
    commit-revisions 20
    }
    console {
    }
    domain-name vclass.local
    host-name sa-vyos-01
    login {
    user admin {
    authentication {
    encrypted-password ****************
    plaintext-password ****************
    }
    full-name "Admin User"
    level admin
    }
    user vmware {
    authentication {
    encrypted-password ****************
    plaintext-password ****************
    }
    full-name "VMware User"
    level operator
    }
    user vyos {
    authentication {
    encrypted-password ****************
    plaintext-password ****************
    }
    level admin
    }
    }
    name-server 172.20.10.10
    name-server 172.120.10.10
    ntp {
    server 172.20.10.10 {
    }
    server 172.120.10.10 {
    }
    }
    package {
    auto-sync 1
    repository community {
    components main
    distribution helium
    password ****************
    url http://packages.vyos.net/vyos
    username ""
    }
    }
    syslog {
    global {
    facility all {
    level notice
    }
    facility protocols {
    level debug
    }
    }
    }
    time-zone UTC
    }