Author Archives: administrator

Reset Cisco switch port/interface to default then apply vlan

Reset interface (port) to default

สิทธิ์การใช้งาน Privilege level on Cisco

คำสั่ง Privilege ก็เป็นระดับที่ใช้สำหรับการกำหนดสิทธิในการเข้าใช้งานของแต่ละผู้ใช้ ว่าผู้ใช้ในแต่ละระดับนั้นสามารถที่จะใช้คำสั่งใดบนอุปกรณ์ได้บ้าง ซึ่งในการใช้งาน Cisco IOS Software โดยปกติจะมีโหมดในการทำงานอยู่สองระดับ คือ User Exec Mode กับ Privileged Exec Mode และสามารถที่จะกำหนดระดับการใช้งานของผู้ใช้ได้ถึง 16 ระดับ ตั้งแต่ระดับ 0 ซึ่งจะจำกัดการใช้งานไว้มากที่สุด จนถึงระดับ 15 ที่สามารถใช้งานได้ทุกอย่าง

โดย Default ระดับ Privilege level บนอุปกรณ์ Cisco IOS จะมีสิทธิการใช้งาน ดังนี้ Continue reading

Install and Configure Postfix with Gmail SMTP for Perfect Mailing System

Changing the Hostname on Ubuntu Server

Before we configure Postfix MTA, let’s adjust our hostname to reflect the correct domain name in our outgoing internal email.

Setting up a hostname is really important if you’re using a custom domain for emailing. The hostname helps in proper mailing address.

One of the easiest and reliable solutions that I recommend is using G Suite to have a business email address, for example: team@restorebin.com. You can also get a 20% discount on sign up using this G Suite coupon code.

About Hostname, you can check your current hostname using the below command line in SSH:

hostname -f

The hostname command can also be used for changing the Ubuntu Server hostname throughout.

hostname example.com

I will be changing the hostname to demo.restorebin.com using below command. Continue reading

Install FreeRADIUS 3 and FreeRADIUS modules Ubuntu 18.04

Start by updating your system packages to the latest version:

sudo apt update
sudo apt -y upgrade

Reboot system after doing an upgrade

sudo reboot

Once the system is up, begin the installation FreeRADIUS and Daloradius on your Ubuntu 18.04 / Ubuntu 16.04 system.

Step 1: Install Apache Web Server and PHP

Daloradius will require php and Apache web server to be installed on the host system.

Installing Apache on Ubuntu:

Install Apache web server by running: Continue reading