Basic BOF Configuration

The parameters which specify location of the image filename that the router tries to boot from and the configuration file are in the BOF.

The most basic BOF configuration should have the following:

The following is a example of a basic BOF configuration.

Classic CLI:

A:node-2# show bof
===============================================================================
BOF (Memory)
===============================================================================
    primary-image    ftp://.../i386-both.tim
    primary-config   ftp://.../config.cfg
    license-file     ftp://.../license
    address          192.168.189.52/24 active
    static-route     192.168.0.0/16 next-hop 192.168.189.1
    static-route     172.16.0.0/16 next-hop 192.168.189.1
    autonegotiate
    duplex           full
    speed            100
    wait             3
    persist          on
    no li-local-save
    no li-separate
    no fips-140-2
    console-speed    115200
===============================================================================
A:node-2#

MD-CLI:

[/]
A:admin@node-2# admin show configuration bof
# TiMOS-B-20.10.R1 both/x86_64 Nokia 7750 SR Copyright (c) 2000-2020 Nokia.
# All rights reserved. All use subject to applicable license agreements.
# Built on Wed Nov 4 09:18:17 PST 2020 by builder in /builds/c/2010B/R1/panos/main/
sros
# Configuration format version 20.10 revision 0

# Generated MON OCT 19 13:39:54 2020 UTC

bof {
    configuration {
        primary-location "ftp://.../config.cfg"
    }
    console {
        speed 115200
    }
    dns {
        primary-server ::
        secondary-server ::
        tertiary-server ::
    }
    image {
        primary-location "ftp://.../i386-both.tim"
    }
    li {
        local-save false
        separate false
    }
    license {
        primary-location "ftp://.../license"
    }
    port "management" {
        autonegotiate true
    }
    router "management" {
        interface "management" {
            cpm active {
                ipv4 {
                    ip-address 192.168.189.52
                    prefix-length 24
                }
            }
            cpm standby {
            }
        }
        static-routes {
            route 192.168.0.0/16 {
                next-hop 192.168.189.1
            }
            route 172.16.0.0/16 {
                next-hop 192.168.189.1
            }
            
        }
    }
    system {
        fips-140-2 false
        persistent-indices true
    }
}

# Finished MON OCT 19 13:39:58 2020 UTC

[/]
A:admin@node-2#