Skip to main content

Posts

Showing posts from July, 2018

snmpwalk End of MIB

[root@monitoring ~]#  snmpwalk -c public -v1 10.0.33.228 End of MIB I was trying to do snmwalk walk for a Cisco Router in GNS3, and was getting only End of MIB after a snmpwalk command.  It turned out that in my Cisco Router configurations I had allowed my SNMP host with ip address with community string "public" but I had not configured the community string separatly with the command  #snmp-server community public This was my configuration mistake but took some time to figure it out

GNS3 Docker Error while creating node: Docker has returned an error: Cannot connect to host docker:80

Error while creating node: Docker has returned an error: Cannot connect to host docker:80 ssl:False [No such file or directory] After adding docker template for Alpine Linux in gns3, you get above mentioned message when you want to use alpine linux in GNS3. To get rid of this message you have to install Docker by following below link curl -fsSL https://get.docker.com/ | sh If you do not have curl installed then instal curl first with below command. apt-get install curl After installing Docker you need to add your user name in the docker group with the following command.  $ sudo usermod -aG docker your_username Verify if the docker service is started with following command $ service docker status If docker is not started then start with following command  $ sudo service docker start Logout from GNS3 Virtual Machines and log back. Start gns3 and use alpine linux.