Hero

...

Home

zsh & vimrc file

MAC ~/.vimrc file I’m using molokai color theme so this is needed and copy it to your local folder (eq. ~/.vim/colors). do a curl -o ~/.vim/colors/molokai.vim https://www.vim.org/scripts/download_script.php?src_id=9750 && mkdir -p ~/.vim/colors # or mkdir -p ~/.vim/colors && wget -O ~/.vim/colors/molokai.vim https://www.vi...

Read more

Juniper commands

collection of useful commands interface config example # create LACP: set interface ae27 description "some description" set interface ae27 aggregated-ether-options lacp active set interface ae27 aggregated-ether-options lacp periodic fast # add interfaces to LACP bundle: set interfaces xe-0/0/16:0 description "some description here" set inter...

Read more

Journalctl commands

collection of useful commands journalctl - ref HERE check logs for speciffic time journalctl --since "2023-01-19 14:00:00" --until "2023-01-19 15:00:00" journalctl -u salt-master.service --since="2023-04-10" --until="2023-04-11" Display only N recent lines of journal logs journalctl -n 25 Show journal logs in real ti...

Read more

FHRP

not quite sure why this is here but.. HSRP R1 conf t int g1/0 standby 10 ip 10.16.0.3 end R2 conf t int g1/0 standby 10 ip 10.16.0.3 end VRRP R1 conf t int g1/0 vrrp 10 ip 10.16.0.3 end R2 conf t int g1/0 vrrp 10 ip 10.16.0.3 end GLBP

Read more