Popular posts from this blog
How to configure Zabbix Monitoring tool on Ubuntu
Here, I want to show you how to install Zabbix on Ubuntu 18.04, and along with the PHP and MySQL. Step #01: First update and upgrade must be run on your server. root@zabbixserver:~# apt update && apt-get upgrade Step #02: Install apache webserver root@zabbixserver:~# apt install apache2 Step #03: Then install mysql database command below root@zabbixserver:~# apt install mysql-server Step #04: Install update version 7.2 needed for install Zabbix server. root@zabbixserver:~# apt install php php7.2-cli php7.2-mysql php7.2-common php7.2-curl php7.2-json php7.2-cgi libapache2-mod-php7.2 php7.2 Apache webserver now start command root@zabbixserver:~# service apache2 start Step #05: Download Zabbix deb file from below link root@zabbixserver:~# wget http://repo.zabbix.com/zabbix/3.5/ubuntu/pool/main/z...
Basic Network configuration:
Basic Network configuration: Telnet: s(c)#enable password xxxxxx # line vty 0 4 # password xxxxxx # login # transport input telnet Port -Channel: s(c)# interface port channel 1 # description LAN-to-WAN # no switchport # ip address 100.100.100.2 255.255.255.240 s(c)# interface gigabitethernet 1/0/46 # no switchport # no ip address # channel group 1 mode active s(c)# interface gigabitethernet 1/0/48 # no switchport # no ip address # channel group 1 mode active Default Gateway: s(c) # IP default-gateway 100.100.100.1 Default Routing: s(c)# ip routing # ip route 0.0.0.0 0.0.0.0 100.100.100.1 Vlan: Create VLAN 10, 20, and...etc) s(c)# vlan 10 # name Servers s(c)# ...
Comments
Post a Comment