SlideShare a Scribd company logo
Basic Configuration
with
MikroTik CLI
bdNOG11
Introduction to MikroTik CLI
MikroTik allows both GUI & CLI to manage MikroTik RouterOS. The CLI allows the
Configuration of the Router's settings using Text Commands.
Pre Requisites:
βœ“Familiar with MikroTik Menu
Methods:
βœ“Telnet
βœ“SSH
βœ“Terminal
First time Startup with MikroTik CLI
β–ͺ To get CLI Console of Router, You can
use telnet or, ssh
β–ͺ You can also get CLI Platform from
Terminal of Router’s Menu
1
2
Quick Typing!
Use Tab Key for Quick Typing!
Example: /inte[Tab]_ becomes /interface _
If there is more than one match, but they all have a common beginning, like:
/interface set e[Tab]_ becomes /interface set ether_
[admin@MikroTik] > interface set e[Tab]_
[admin@MikroTik] > interface set ether[Tab]_
[admin@MikroTik] > interface set ether[Tab]_
ether1 ether2 ether3 ether4 ether5
[?] – display all possible commands | help
Quick Typing! – Example
Another way to press fewer keys while typing:
[admin@MikroTik] > pin 10.1 c 100 si 1500
Equals to:
[admin@MikroTik] > ping 10.0.0.1 count 100 size 1500
The General Commands
print – shows all information from a particular level
add – add a new item
remove – removes specified item from a list
set – to change values of an item or parameter
find – associated with set, usually a conditional or matching statement | - action
enable – enable an item from list
disable – disable an item from list
comment – holds the description of an item
edit – modify values
move – changes the order of item from list
Basic Configuration
Basic Configuration are the Initial Arrangement or Minimum Configuration which
we must do in every Router!
Basic Configuration includes:
βœ“ User Administration
βœ“ Hostname
βœ“ IP Addressing
βœ“ Default Route
βœ“ DNS Settings
βœ“ SNTP Settings
βœ“ Device Security
User Administration – Best Practice
βœ“Set the β€œadmin” Password after first Login
βœ“Restrict β€œadmin” Account
βœ“Avoid too many Users with β€œfull” Permission
βœ“Customize Group Policy with minimum Permission
βœ“Better not to use β€œadmin” as operational User
User Administration
Set the β€œadmin” Password:
Every Route has a Factory Preconfigured User β€œadmin” with β€œempty/blank” Password. To set the
Password for β€œadmin” – Issue the Command from Terminal:
[admin@MikroTik] > user set admin password=*******
Creating a New User and New Group Policy:
[admin@MikroTik] > user add name=pavel group=full password=*******
[admin@MikroTik] > user group add name=monitor policy=read,telnet,winbox,local
[admin@MikroTik] > user add name=nmc group=monitor password=*******
User Administration (Cont.)
Deactivating a User: [admin@MikroTik] > user disable 2
Activating a User: [admin@MikroTik] > user enable 2
User Administration (Cont.)
Restrict Access for Operational Users of MikroTik by IP Address:
Default Firewall protects your Router from unauthorized access from Outer Networks, it is
also possible to restrict User access for the specific IP Address for more Security!
[admin@MikroTik] > user set 1 address=202.4.100.35,172.16.1.0/24,2405:7600:b:4::2
[admin@MikroTik] > user set pavel address=202.4.100.35,172.16.1.0/24,2405:7600:b:4::2
User Administration (Cont.)
If you want to modify/remove IP Restriction for any Operational User of MikroTik, then
we need to issue the below Command:
[admin@MikroTik]> /user edit pavel address
After issuing above Command, this screen
will appear and you can modify from here!
You should able to login your Router via
telnet or ssh
Hostname Configuration
Hostname of a device is its Identification. Hostname will say you in which
Router or Switch you are currently working on.
Default Hostname of MikroTik is MikroTik.
Configuring Hostname of your Router:
[admin@MikroTik] > system identity set name=bdNOG11-IPv6
[admin@bdNOG11-IPv6] >
IP Addressing
Configuring IPv4 Address in an Interface:
[admin@bdNOG11-IPv6] > ip address add address=118.179.111.2/30 interface=ether1 comment=WAN
Configuring IPv6 Address in an Interface:
[admin@bdNOG11-IPv6] > ipv6 address add address=2405:7600:b::2/64 interface=ether1 comment=WAN
Default Route Configuration
Default Route for IPv4:
[admin@bdNOG11-IPv6] > ip route add dst-address=0.0.0.0/0 gateway=118.179.111.1
Default Route for IPv6:
[admin@bdNOG11-IPv6] > ipv6 route add dst-address=::/0 gateway= 2405:7600:b::1
Creating β€œloopback” Interface
In MikroTik, there is no loopback Interface by default. We just create a bridge with
Zero (0) member ports and it will always be active so that it will function as a
regular loopback Interface.
/interface bridge add name=loopback0
/ip address add address=1.1.1.1/32 interface=loopback0 comment=RID
DNS Settings
DNS is a Client-Server Protocol where DNS Client requests for the Domain Name resolution and
DNS Server response on it. The DNS Client is used to resolve Domain Name to IP Address from a
DNS Server. On the other hand, the DNS Server feature provides Domain Name resolution for
the Clients connected to it.
MikroTik Router has both DNS Client and DNS Server features.
/ip dns set servers=8.8.8.8,8.8.4.4,2001:4860:4860::8888,2001:4860:4860::8844
Firewall to protect DNS Query from Outer Networks:
/ip firewall filter add chain=input protocol=tcp dst-port=53 in-interface=ether1-WAN action=drop
/ip firewall filter add chain=input protocol=udp dst-port=53 in-interface=ether1-WAN action=drop
/ipv6 firewall filter add chain=input protocol=tcp dst-port=53 in-interface=ether1-WAN action=drop
/ipv6 firewall filter add chain=input protocol=udp dst-port=53 in-interface=ether1-WAN action=drop
Bandwidth Management Scripts
Day=Regular_Package
/queue type set [find name=Pkg1-DL] pcq-rate=10M
/queue type set [find name=Pkg1-UL] pcq-rate=10M
/queue type set [find name=Pkg2-DL] pcq-rate=20M
/queue type set [find name=Pkg2-UL] pcq-rate=20M
Night=Double_Bandwidth
/queue type set [find name=Pkg1-DL] pcq-rate=20M
/queue type set [find name=Pkg1-UL] pcq-rate=20M
/queue type set [find name=Pkg2-DL] pcq-rate=40M
/queue type set [find name=Pkg2-UL] pcq-rate=40M
SNTP Settings
Simple Network Time Protocol (SNTP) is a Networking Protocol for Clock
Synchronization between Computer Systems. It is a simplified version of Network
Time Protocol (NTP).
/system ntp client set enabled=yes primary-ntp=2001:4860:4860::8844 secondary-ntp=202.4.100.106
Have Fun with MikroTik CLI
Creating Multiple VLANs in a Single Command:
[admin@bdNOG11-IPv6]> :for i from=101 to=199 do={interface vlan add name=("vlan$i") vlan-id=$i
interface=ether5}
Transferring VLANs from one Interface to Another:
[admin@bdNOG11-IPv6]> interface vlan set [find interface=ether5] interface=ether4
Have Fun with MikroTik CLI (Cont.)
Changing ARP Interface:
[admin@bdNOG11-IPv6]> ip arp set [find interface=ether4] interface=ether5
Shifting IP Address from one Interface to Another:
[admin@bdNOG11-IPv6]> ip address set [find interface=ether4] interface=ether5
Have Fun with MikroTik CLI (Cont.)
A Script to add multiple Queues in a Single Command:
[admin@bdNOG11-IPv6]> :for i from=2 to=254 do={/queue simple add name=("PC-$i") target=("172.16.1.$i")
parent=Total-BW max-limit=10M/10M limit-at=5M/5M time=0s-1d,sun,mon,tue,wed,thu,fri,sat}
Backup Restoration
The Backup is option allows you to save a file containing all your Router’s Configuration
Settings, like WAN Setup, Wireless Settings, Port Forwarding, Firewall etc. to a file on
your Computer. This file can then be used to Restore your settings if the Router is Reset
to the Factory Default Settings.
To take the Router Backup – execute the Command below:
[admin@bdNOG11-IPv6]> export file=bdNOG11-IPv6-MikroTik-BKP-11-01-2020
To Restore Backup into a Router – execute the Command below:
[admin@bdNOG11-IPv6]> import file=bdNOG11-IPv6-MikroTik-BKP-11-01-2020
Taking Backup for a Particular Module
You can also take Backup for a Particular Module like Queues, Filter Rules, NAT, PPPoE
Secrets, IP Addresses or any other you want.
Taking the Backup for Filter Rules:
[admin@bdNOG11-IPv6]>ip firewall filter
[admin@bdNOG11-IPv6]/ip firewall filter>export file=bdNOG11-IPv6-Filter-Rules-11-01-2020
Restoring the Backup for Filter Rules:
[admin@bdNOG11-IPv6]>import file=bdNOG11-IPv6 -Filter-Rules-11-01-2020
The β€œexport” Command
The β€œexport” Command will help you to get the Router Backup and it will also help
you find the correspond Command executed in a Particular Module like Firewall,
Mangle, Queues, etc.

More Related Content

PPTX
MikroTik MTCNA
DOCX
Mikrotik basic configuration
PDF
BGP on mikrotik
PDF
Mikrotik Hardening
DOC
Tutorial radius client mikrotik
PDF
Routing fundamentals with mikrotik
PDF
Layer 7 Firewall on Mikrotik
PDF
Mikro tik advanced training
MikroTik MTCNA
Mikrotik basic configuration
BGP on mikrotik
Mikrotik Hardening
Tutorial radius client mikrotik
Routing fundamentals with mikrotik
Layer 7 Firewall on Mikrotik
Mikro tik advanced training

What's hot (20)

PDF
IPsec on Mikrotik
PDF
MikroTik Security
PPT
Ccna Presentation
Β 
PDF
BGP filter with mikrotik
PPTX
Mac addresses(media access control)
PDF
MUM Melbourne : Build Enterprise Wireless with CAPsMAN
PDF
VPN - Virtual Private Network
PDF
OpeVPN on Mikrotik
PDF
Mikrotik VRRP
PDF
GLC webinar: limiting bandwidth using mikrotik
PPTX
Tcp IP Model
PDF
VLAN on mikrotik
PPTX
Ports and protocols
PDF
Mikrotik Hotspot With Queue Tree BW Management
PPTX
Types of Network
PDF
Detecting network virus using mikrotik
PPTX
VPLS Fundamental
PPTX
TCP IP Model | Computer Science
PDF
Mikrotik Fastpath vs Fasttrack
PDF
Mikrotik firewall filter
IPsec on Mikrotik
MikroTik Security
Ccna Presentation
Β 
BGP filter with mikrotik
Mac addresses(media access control)
MUM Melbourne : Build Enterprise Wireless with CAPsMAN
VPN - Virtual Private Network
OpeVPN on Mikrotik
Mikrotik VRRP
GLC webinar: limiting bandwidth using mikrotik
Tcp IP Model
VLAN on mikrotik
Ports and protocols
Mikrotik Hotspot With Queue Tree BW Management
Types of Network
Detecting network virus using mikrotik
VPLS Fundamental
TCP IP Model | Computer Science
Mikrotik Fastpath vs Fasttrack
Mikrotik firewall filter
Ad

Similar to 1.4.2-basic-configuration-with-mikrotik-cli.pdf (20)

PDF
pdfcoffee.com_mikrotik-firewall-trainingpdf-5-pdf-free.pdf
PDF
Mikrotik router documentation ( Prepare by Mr. Chetra PO )
PPTX
MikroTik Basic Training Class - Online Moduls - English
PDF
Tutorial mikrotik step by step anung muhandanu
PDF
Tutorial mikrotik step by step anung muhandanu
DOC
Basic command to configure mikrotik
PDF
Tutorial mikrotik step by step
DOCX
Router Commands Overview
DOCX
Mikrotik pcq
PPTX
Manejo de redes
PDF
CCNA : Intro to Cisco IOS - Part 2
PDF
Nat mikrotik
PDF
best Basic Mikrotik Routers security primer
PPTX
Lec 1.pptx
PPT
Modes of router
DOC
Ccna commands
DOC
Ccna commands
PPTX
MTCNA Show.pptx
PDF
CCNA - Routing & Switching Commands
PDF
Sharing your-internet-connection-on-linux
pdfcoffee.com_mikrotik-firewall-trainingpdf-5-pdf-free.pdf
Mikrotik router documentation ( Prepare by Mr. Chetra PO )
MikroTik Basic Training Class - Online Moduls - English
Tutorial mikrotik step by step anung muhandanu
Tutorial mikrotik step by step anung muhandanu
Basic command to configure mikrotik
Tutorial mikrotik step by step
Router Commands Overview
Mikrotik pcq
Manejo de redes
CCNA : Intro to Cisco IOS - Part 2
Nat mikrotik
best Basic Mikrotik Routers security primer
Lec 1.pptx
Modes of router
Ccna commands
Ccna commands
MTCNA Show.pptx
CCNA - Routing & Switching Commands
Sharing your-internet-connection-on-linux
Ad

Recently uploaded (20)

PPTX
Power Point - Lesson 3_2.pptx grad school presentation
Β 
PPT
tcp ip networks nd ip layering assotred slides
PPTX
SAP Ariba Sourcing PPT for learning material
PPTX
PptxGenJS_Demo_Chart_20250317130215833.pptx
PPTX
E -tech empowerment technologies PowerPoint
PDF
Decoding a Decade: 10 Years of Applied CTI Discipline
PDF
Unit-1 introduction to cyber security discuss about how to secure a system
PPTX
international classification of diseases ICD-10 review PPT.pptx
DOCX
Unit-3 cyber security network security of internet system
PDF
RPKI Status Update, presented by Makito Lay at IDNOG 10
Β 
PDF
How to Ensure Data Integrity During Shopify Migration_ Best Practices for Sec...
PPTX
presentation_pfe-universite-molay-seltan.pptx
PDF
πŸ’° π”πŠπ“πˆ πŠπ„πŒπ„ππ€ππ†π€π πŠπˆππ„π‘πŸ’πƒ π‡π€π‘πˆ 𝐈𝐍𝐈 πŸπŸŽπŸπŸ“ πŸ’°
Β 
PDF
Tenda Login Guide: Access Your Router in 5 Easy Steps
PDF
The New Creative Director: How AI Tools for Social Media Content Creation Are...
PPTX
innovation process that make everything different.pptx
PDF
Cloud-Scale Log Monitoring _ Datadog.pdf
PPTX
June-4-Sermon-Powerpoint.pptx USE THIS FOR YOUR MOTIVATION
PDF
APNIC Update, presented at PHNOG 2025 by Shane Hermoso
Β 
PPTX
introduction about ICD -10 & ICD-11 ppt.pptx
Power Point - Lesson 3_2.pptx grad school presentation
Β 
tcp ip networks nd ip layering assotred slides
SAP Ariba Sourcing PPT for learning material
PptxGenJS_Demo_Chart_20250317130215833.pptx
E -tech empowerment technologies PowerPoint
Decoding a Decade: 10 Years of Applied CTI Discipline
Unit-1 introduction to cyber security discuss about how to secure a system
international classification of diseases ICD-10 review PPT.pptx
Unit-3 cyber security network security of internet system
RPKI Status Update, presented by Makito Lay at IDNOG 10
Β 
How to Ensure Data Integrity During Shopify Migration_ Best Practices for Sec...
presentation_pfe-universite-molay-seltan.pptx
πŸ’° π”πŠπ“πˆ πŠπ„πŒπ„ππ€ππ†π€π πŠπˆππ„π‘πŸ’πƒ π‡π€π‘πˆ 𝐈𝐍𝐈 πŸπŸŽπŸπŸ“ πŸ’°
Β 
Tenda Login Guide: Access Your Router in 5 Easy Steps
The New Creative Director: How AI Tools for Social Media Content Creation Are...
innovation process that make everything different.pptx
Cloud-Scale Log Monitoring _ Datadog.pdf
June-4-Sermon-Powerpoint.pptx USE THIS FOR YOUR MOTIVATION
APNIC Update, presented at PHNOG 2025 by Shane Hermoso
Β 
introduction about ICD -10 & ICD-11 ppt.pptx

1.4.2-basic-configuration-with-mikrotik-cli.pdf

  • 2. Introduction to MikroTik CLI MikroTik allows both GUI & CLI to manage MikroTik RouterOS. The CLI allows the Configuration of the Router's settings using Text Commands. Pre Requisites: βœ“Familiar with MikroTik Menu Methods: βœ“Telnet βœ“SSH βœ“Terminal
  • 3. First time Startup with MikroTik CLI β–ͺ To get CLI Console of Router, You can use telnet or, ssh β–ͺ You can also get CLI Platform from Terminal of Router’s Menu 1 2
  • 4. Quick Typing! Use Tab Key for Quick Typing! Example: /inte[Tab]_ becomes /interface _ If there is more than one match, but they all have a common beginning, like: /interface set e[Tab]_ becomes /interface set ether_ [admin@MikroTik] > interface set e[Tab]_ [admin@MikroTik] > interface set ether[Tab]_ [admin@MikroTik] > interface set ether[Tab]_ ether1 ether2 ether3 ether4 ether5 [?] – display all possible commands | help
  • 5. Quick Typing! – Example Another way to press fewer keys while typing: [admin@MikroTik] > pin 10.1 c 100 si 1500 Equals to: [admin@MikroTik] > ping 10.0.0.1 count 100 size 1500
  • 6. The General Commands print – shows all information from a particular level add – add a new item remove – removes specified item from a list set – to change values of an item or parameter find – associated with set, usually a conditional or matching statement | - action enable – enable an item from list disable – disable an item from list comment – holds the description of an item edit – modify values move – changes the order of item from list
  • 7. Basic Configuration Basic Configuration are the Initial Arrangement or Minimum Configuration which we must do in every Router! Basic Configuration includes: βœ“ User Administration βœ“ Hostname βœ“ IP Addressing βœ“ Default Route βœ“ DNS Settings βœ“ SNTP Settings βœ“ Device Security
  • 8. User Administration – Best Practice βœ“Set the β€œadmin” Password after first Login βœ“Restrict β€œadmin” Account βœ“Avoid too many Users with β€œfull” Permission βœ“Customize Group Policy with minimum Permission βœ“Better not to use β€œadmin” as operational User
  • 9. User Administration Set the β€œadmin” Password: Every Route has a Factory Preconfigured User β€œadmin” with β€œempty/blank” Password. To set the Password for β€œadmin” – Issue the Command from Terminal: [admin@MikroTik] > user set admin password=******* Creating a New User and New Group Policy: [admin@MikroTik] > user add name=pavel group=full password=******* [admin@MikroTik] > user group add name=monitor policy=read,telnet,winbox,local [admin@MikroTik] > user add name=nmc group=monitor password=*******
  • 10. User Administration (Cont.) Deactivating a User: [admin@MikroTik] > user disable 2 Activating a User: [admin@MikroTik] > user enable 2
  • 11. User Administration (Cont.) Restrict Access for Operational Users of MikroTik by IP Address: Default Firewall protects your Router from unauthorized access from Outer Networks, it is also possible to restrict User access for the specific IP Address for more Security! [admin@MikroTik] > user set 1 address=202.4.100.35,172.16.1.0/24,2405:7600:b:4::2 [admin@MikroTik] > user set pavel address=202.4.100.35,172.16.1.0/24,2405:7600:b:4::2
  • 12. User Administration (Cont.) If you want to modify/remove IP Restriction for any Operational User of MikroTik, then we need to issue the below Command: [admin@MikroTik]> /user edit pavel address After issuing above Command, this screen will appear and you can modify from here! You should able to login your Router via telnet or ssh
  • 13. Hostname Configuration Hostname of a device is its Identification. Hostname will say you in which Router or Switch you are currently working on. Default Hostname of MikroTik is MikroTik. Configuring Hostname of your Router: [admin@MikroTik] > system identity set name=bdNOG11-IPv6 [admin@bdNOG11-IPv6] >
  • 14. IP Addressing Configuring IPv4 Address in an Interface: [admin@bdNOG11-IPv6] > ip address add address=118.179.111.2/30 interface=ether1 comment=WAN Configuring IPv6 Address in an Interface: [admin@bdNOG11-IPv6] > ipv6 address add address=2405:7600:b::2/64 interface=ether1 comment=WAN
  • 15. Default Route Configuration Default Route for IPv4: [admin@bdNOG11-IPv6] > ip route add dst-address=0.0.0.0/0 gateway=118.179.111.1 Default Route for IPv6: [admin@bdNOG11-IPv6] > ipv6 route add dst-address=::/0 gateway= 2405:7600:b::1
  • 16. Creating β€œloopback” Interface In MikroTik, there is no loopback Interface by default. We just create a bridge with Zero (0) member ports and it will always be active so that it will function as a regular loopback Interface. /interface bridge add name=loopback0 /ip address add address=1.1.1.1/32 interface=loopback0 comment=RID
  • 17. DNS Settings DNS is a Client-Server Protocol where DNS Client requests for the Domain Name resolution and DNS Server response on it. The DNS Client is used to resolve Domain Name to IP Address from a DNS Server. On the other hand, the DNS Server feature provides Domain Name resolution for the Clients connected to it. MikroTik Router has both DNS Client and DNS Server features. /ip dns set servers=8.8.8.8,8.8.4.4,2001:4860:4860::8888,2001:4860:4860::8844 Firewall to protect DNS Query from Outer Networks: /ip firewall filter add chain=input protocol=tcp dst-port=53 in-interface=ether1-WAN action=drop /ip firewall filter add chain=input protocol=udp dst-port=53 in-interface=ether1-WAN action=drop /ipv6 firewall filter add chain=input protocol=tcp dst-port=53 in-interface=ether1-WAN action=drop /ipv6 firewall filter add chain=input protocol=udp dst-port=53 in-interface=ether1-WAN action=drop
  • 18. Bandwidth Management Scripts Day=Regular_Package /queue type set [find name=Pkg1-DL] pcq-rate=10M /queue type set [find name=Pkg1-UL] pcq-rate=10M /queue type set [find name=Pkg2-DL] pcq-rate=20M /queue type set [find name=Pkg2-UL] pcq-rate=20M Night=Double_Bandwidth /queue type set [find name=Pkg1-DL] pcq-rate=20M /queue type set [find name=Pkg1-UL] pcq-rate=20M /queue type set [find name=Pkg2-DL] pcq-rate=40M /queue type set [find name=Pkg2-UL] pcq-rate=40M
  • 19. SNTP Settings Simple Network Time Protocol (SNTP) is a Networking Protocol for Clock Synchronization between Computer Systems. It is a simplified version of Network Time Protocol (NTP). /system ntp client set enabled=yes primary-ntp=2001:4860:4860::8844 secondary-ntp=202.4.100.106
  • 20. Have Fun with MikroTik CLI Creating Multiple VLANs in a Single Command: [admin@bdNOG11-IPv6]> :for i from=101 to=199 do={interface vlan add name=("vlan$i") vlan-id=$i interface=ether5} Transferring VLANs from one Interface to Another: [admin@bdNOG11-IPv6]> interface vlan set [find interface=ether5] interface=ether4
  • 21. Have Fun with MikroTik CLI (Cont.) Changing ARP Interface: [admin@bdNOG11-IPv6]> ip arp set [find interface=ether4] interface=ether5 Shifting IP Address from one Interface to Another: [admin@bdNOG11-IPv6]> ip address set [find interface=ether4] interface=ether5
  • 22. Have Fun with MikroTik CLI (Cont.) A Script to add multiple Queues in a Single Command: [admin@bdNOG11-IPv6]> :for i from=2 to=254 do={/queue simple add name=("PC-$i") target=("172.16.1.$i") parent=Total-BW max-limit=10M/10M limit-at=5M/5M time=0s-1d,sun,mon,tue,wed,thu,fri,sat}
  • 23. Backup Restoration The Backup is option allows you to save a file containing all your Router’s Configuration Settings, like WAN Setup, Wireless Settings, Port Forwarding, Firewall etc. to a file on your Computer. This file can then be used to Restore your settings if the Router is Reset to the Factory Default Settings. To take the Router Backup – execute the Command below: [admin@bdNOG11-IPv6]> export file=bdNOG11-IPv6-MikroTik-BKP-11-01-2020 To Restore Backup into a Router – execute the Command below: [admin@bdNOG11-IPv6]> import file=bdNOG11-IPv6-MikroTik-BKP-11-01-2020
  • 24. Taking Backup for a Particular Module You can also take Backup for a Particular Module like Queues, Filter Rules, NAT, PPPoE Secrets, IP Addresses or any other you want. Taking the Backup for Filter Rules: [admin@bdNOG11-IPv6]>ip firewall filter [admin@bdNOG11-IPv6]/ip firewall filter>export file=bdNOG11-IPv6-Filter-Rules-11-01-2020 Restoring the Backup for Filter Rules: [admin@bdNOG11-IPv6]>import file=bdNOG11-IPv6 -Filter-Rules-11-01-2020
  • 25. The β€œexport” Command The β€œexport” Command will help you to get the Router Backup and it will also help you find the correspond Command executed in a Particular Module like Firewall, Mangle, Queues, etc.