Security

last person joined: 8 days ago 

Ask questions and share experiences with Juniper Connected Security. Discuss Advanced Threat Protection, SecIntel, Secure Analytics, Secure Connect, Security Director, and all things related to Juniper security technologies.
  • 1.  NSMExpress - lo, eth0 and eth1 not up at startup

    Posted 12-04-2012 09:06

    Hello,

    After each reboot I need to connect on my NSM with the console port and manually bring up the network interface.

    The ifcfg-xxx file are ok

    Do you have an idea?

    I don't want a custom solution but something like the standard config.

    On your own NSM do you have a symbolic link like S20network on /etc/rc.d/rc3.d or  something else?

     

    Thanks 



  • 2.  RE: NSMExpress - lo, eth0 and eth1 not up at startup
    Best Answer

    Posted 12-06-2012 02:04

    Hi,

     

    Here's how to check startup levels and modify them:

     

    # Check (Startup disabled on all levels)

    root@nsm:~$ chkconfig --list |grep -i network
    network 0: off 1: off 2: off 3: off 4: off 5: off 6: off

     

    # Modify (Enable startup at running lebels 2,3,4,5 and 6)

    root@nsm:~$ chkconfig --level 23456 network on

     

    # Check (Startup enabled on wanted levels)

    root@nsm:~$ chkconfig --list |grep -i network
    network 0: off 1: off 2: on 3: on 4: on 5: on 6: on