The most viewed items
DHCP is a dynamic host configuration protocol. We don't need to manually set IP address to the hosts in the local network by configuring DHCP in the routers. The router will automatically set by itself. The example of how to configure DHCP in Cisco IOS Router is shown in the below with the picture together. I hope this example will be benefit for brothers and sisters who are learning Cisco Networking.
Router
en
config t
int g0/0
ip address 192.168.1.1 255.255.255.0
no shut
exit
ip dhcp pool Test
network 192.168.1.0 255.255.255.0
default-router 192.168.1.1
dns-server 192.168.1.1
end
copy run start
If you want to see sample configuration in packet tracer, you can download pkt file. Click here to download.
PPP is Point-to-Point Protocol and it is a Wide Area Network (WAN) Technology. The example of how to configure PPP (PAP) in Cisco IOS Routers is shown in the below with the picture together. I hope this example will be benefit for brothers and sisters who are learning Cisco Networking.
Mandalay Router
en
config t
username Mandalay password Mandalay
hostname Mandalay
int s0/0/0
ip address 223.200.100.1 255.255.255.252
no shut
encap ppp
ppp authentication pap
ppp pap sent-username Naypyidaw password Naypyidaw
exit
int s0/0/1
ip address 223.200.100.9 255.255.255.252
no shut
encap ppp
ppp authentication pap
ppp pap sent-username Yangon password Yangon
exit
router rip
version 2
network 223.200.100.0
end
copy run start
Naypyidaw Router
en
config t
username Naypyidaw password Naypyidaw
hostname Naypyidaw
int s0/0/0
ip address 223.200.100.2 255.255.255.252
no shut
encap ppp
ppp authentication pap
ppp pap sent-username Mandalay password Mandalay
exit
int s0/0/1
ip address 223.200.100.5 255.255.255.252
no shut
encap ppp
ppp auth pap
ppp pap sent-username Yangon password Yangon
exit
router rip
version 2
network 223.200.100.0
network 223.200.100.4
end
copy run start
Yangon Router
en
config t
username Yangon password Yangon
hostname Yagngon
int s0/0/1
ip address 223.200.100.6 255.255.255.252
no shut
encap ppp
ppp auth pap
ppp pap sent-username Naypyidaw password Naypyidaw
exit
int s0/0/0
ip address 223.200.100.10 255.255.255.252
no shut
encap ppp
ppp auth pap
ppp pap sent-username Mandalay password Mandalay
router rip
version 2
network 223.200.100.4
end
copy run start
If you want to do testing of this configuration in Packet Tracer, please click here to download pkt file.
OSPF is Open Shortest Path First and it is a link state routing protocol. The example of how to configure OSPF in Cisco IOS Routers is shown in the below with the picture together. I hope this example will be benefit for brothers and sisters who are learning Cisco Networking.
Router 1
Activate the connection to PC1
en
config t
int g0/0
ip address 192.168.1.1 255.255.255.0
no shut
Activate the connection to Router2
int s0/0/1
ip address 223.200.100.9 255.255.255.252
clock rate 64000
no shut
Activate the connection to Router 3
int s0/0/0
ip address 223.200.100.1 255.255.255.252
no shut
exit
Configure OSPF
router ospf 10
network 192.168.1.0 0.0.0.255 area 0
network 223.200.100.0 0.0.0.3 area 0
network 223.200.100.8 0.0.0.3 area 0
end
Save the configuration
copy run start
Router 2
Activate the connection to PC2
en
config t
int g0/0
ip address 192.168.2.1 255.255.255.0
no shut
Activate the connection to Router 1
int s0/0/1
ip address 223.200.100.10 255.255.255.252
no shut
Activate the connection to Router 3
int s0/0/0
ip address 223.200.100.6 255.255.255.252
no shut
exit
Configure OSPF
router ospf 10
network 192.168.2.0 0.0.0.255 area 0
network 223.200.100.8 0.0.0.3 area 0
network 223.200.100.4 0.0.0.3 area 0
end
Save the configuration
copy run start
Router 3
Activate the connection to PC3
en
config t
int g0/0
ip address 192.168.3.1 255.255.255.0
no shut
Activate the connection to Router 1
int s0/0/0
ip address 223.200.100.2 255.255.255.252
clock rate 64000
no shut
Activate the connection to Router 2
int s0/0/1
ip address 223.200.100.5 255.255.255.252
clock rate 64000
no shut
exit
Configure OSPF
router ospf 10
network 192.168.3.0 0.0.0.255 area 0
network 223.200.100.0 0.0.0.3 area 0
network 223.200.100.4 0.0.0.3 area 0
end
Save the configuration
copy run start
If you want to do testing in Packet Tracer, please click here to download .pkt file.
EIGRP is Enhanced Interior Gateway Routing Protocol and it is an advanced distance vector routing protocol. The example of how to configure EIGRP in Cisco IOS Routers is shown in the below with the picture together. I hope this example will be benefit for brothers and sisters who are learning Cisco Networking.
Router 1
Activate the connection to PC1
en
config t
int g0/0
ip address 192.168.1.1 255.255.255.0
no shut
Activate the connection to Router2
int s0/0/1
ip address 223.200.100.9 255.255.255.252
clock rate 64000
no shut
Activate the connection to Router 3
int s0/0/0
ip address 223.200.100.1 255.255.255.252
no shut
exit
Configure EIGRP
router eigrp 10
network 192.168.1.0 0.0.0255
network 223.200.100.0 0.0.0.3
network 223.200.100.8 0.0.0.3
end
Save the configuration
copy run start
Router 2
Activate the connection to PC2
en
config t
int g0/0
ip address 192.168.2.1 255.255.255.0
no shut
Activate the connection to Router 1
int s0/0/1
ip address 223.200.100.10 255.255.255.252
no shut
Activate the connection to Router 3
int s0/0/0
ip address 223.200.100.6 255.255.255.252
no shut
exit
Configure EIGRP
router eigrp 10
network 192.168.2.0 0.0.0.255
network 223.200.100.8 0.0.0.3
network 223.200.100.4 0.0.0.3
end
Save the configuration
copy run start
Router 3
Activate the connection to PC3
en
config t
int g0/0
ip address 192.168.3.1 255.255.255.0
no shut
Activate the connection to Router 1
int s0/0/0
ip address 223.200.100.2 255.255.255.252
clock rate 64000
no shut
Activate the connection to Router 2
int s0/0/1
ip address 223.200.100.5 255.255.255.252
clock rate 64000
no shut
exit
Configure EIGRP
router eigrp 10
network 192.168.3.0 0.0.0.255
network 223.200.100.0 0.0.0.3
network 223.200.100.4 0.0.0.3
end
Save the configuration
copy run start
If you want to see sample configuration in packet tracer, please click here to download pkt file.
(Note: you need to give ip address, subnet mask and default gateway to the hosts)
RIP (Routing Information Protocol) is the oldest distance vector routing protocol. The maximum number of hop count is 15 and the hop count number 16 is defined as infinite distance. The converged time is slow if compared with other routing protocols such as EIGRP, OSPF and IS-IS. There are two versions in RIP: version 1 and version 2.
RIP V1
RIP v1 uses FLSM (fixed length subnet masking) and does not support VLSM(variable length subnet masking). Using FLSM causes IP wastes.
FLSM Examples,
192.168.1.0 /24
192.168.2.0 /24
RIP V2
RIP V2 supports VLSM (variable length subnet masking). If there are different amount of hosts in an organization, we should use RIP v2.
For example,
HR Department : 20 hosts
Engineering Department: 50 hosts
IT department: 10 hosts
Sales department: 30 hosts
The following is the sample configuration of RIP in Cisco Routers.
Router 1
Activate Connection to Router 2
en
config t
int s0/0/0
ip address 200.100.10.1 255.255.255.252
clock rate 64000
no shut
Activate Connection to Switch 1
int g0/0
ip address 192.168.1.1 255.255.255.0
no shut
Configure RIP V1/V2
router rip
version 2
network 192.168.1.0
network 200.100.10.0
end
Save the Configuration
copy run start
Switch 1
Activate Connection to Router 1
en
config t
int f0/1
no shut
Activate Connection to PC5
int f0/2
no shut
Activate Connection to PC6
int f0/3
no shut
end
Save the Configuration
copy run start
Router 2
Activate Connection to Router 1
en
config t
int s0/0/0
ip address 200.100.10.2 255.255.255.252
clock rate 64000
no shut
Activate Connection to Switch 2
int g0/0
ip address 192.168.2.1 255.255.255.0
no shut
Configure RIP V1/V2
router rip
version 2
network 192.168.2.0
network 200.100.10.0
end
Save the Configuration
copy run start
Switch 2
Activate Connection to Router 2
en
config t
int f0/1
no shut
Activate Connection to PC7
int f0/2
no shut
Activate Connection to PC8
int f0/3
no shut
end
Save the Configuration
copy run start
Pkt File
Please click here to download packet tracer file.
(Note: you need to give ip address, subnet mask and default gateway to the hosts)
*** Console Password ***
enable (en)
configure terminal (config t)
line console 0
password console123 (type secured password)
*** Enable Password ***
enable (en)
configure terminal (config t)
enable password enable123 (type secured password)
*** Enable Secret ***
enable (en)
configure terminal (config t)
enable secret secret123 (type secured password)
*** VTY Password ***
enable (en)
configure terminal (config t)
line vty 0 15
password vty123 (type secured password)
*** To go back enable mode ***
end
*** To save configuration ***
copy run start
ZilaStar provides the best email services for your businesses with the followings:
- Reliable security.
- Reasonable price.
- No downtime.
- Fast speed for incoming and outgoing Emails.
- Spam Filters that can block the dangerous Emails sent to steal your data or information.
- You can check the delivery status of your sent mails.
- You can check the spam score of incoming mails.
- Ever support for any problem about Emails.
- You can use Emails in Microsoft Outlook, Computers, Tablets and Mobile Phones.
- Synchronization: We can synchronize all the Emails of one user in Computers, Tablets and Mobile Phones. For example, when a user sends Emails to someone from his mobile phone, those Emails are automatically saved in Microsoft Outlook in his computer. If you don't want synchronization, we can configure not to be synchronized. That is better for outlook database backup file.
Plan | Basic | Professional | Business | Enterprise |
---|---|---|---|---|
Email Accounts | Up to 10 | Up to 20 | Up to 30 | Unlimited |
Storage | Unlimited | Unlimited | Unlimited | Unlimited |
Outlook Mail | Yes | Yes | Yes | Yes |
Mobile Mail | Yes | Yes | Yes | Yes |
Web Mail | Yes | Yes | Yes | Yes |
Spam Filter | Yes | Yes | Yes | Yes |
Speed | Fast | Fast | Fast | Fast |
Security | 100% | 100% | 100% | 100% |
Daily Support | Yes | Yes | Yes | Yes |
Price | ||||
Initial Year | Negotiable | Negotiable | Negotiable | Negotiable |
Duration | Negotiable | Negotiable | Negotiable | Negotiable |
Annual Fee | Negotiable | Negotiable | Negotiable | Negotiable |
Note: You can order the email accounts starting from at least one account. The price is negotiable.
Why should we use private or business emails?
There are many public email providers such as Google, Yahoo, and Hotmail. We can use those public emails by free of charge. But using public emails is not as secured as private emails. Why? Millions of users are using public emails by free of charge. So, each user can't be administrated on the server. By using private emails, you will get the following benefits:
1. Security
We can also filter the spam mails in Public Emails. But not 100%. We can filter the spam mails in the server by using private emails. And, we can also use private encryption. So, more secured.
2. Email Name
We can't choose the email names what we want by using public email services. For example, we can't get [email protected] or [email protected]. By using private emails, you can get the email names what you want. For example, [email protected] or [email protected].
3. Impression of Customers
Using public emails is not suitable in the businesses. Using private emails is the best habit to get impression of the customers.
How can we get private / business Emails?
1. Google provides Google Suite for private email service.
2. Microsoft provides Office 365 for private email service and applications.
3. Setting up private / own exchange servers. It is not suitable for small business as the cost is high.
4. Web Mail.
ZilaStar provides Web based or Cloud based Point of Sale system for your business with the following features.
I've recently developed an android application (mhk.apk) for the website (www.myathtutkhaung.com).
One of my friends requested me to develop windows application for income and expense of an organization. So I've developed this CashInCashout windows application.
Hosting the website is the best way to advertise your business to the world. So, most of the companies and organizations become to host own website to advertise their business.
ZilaStar provides the best web development services from the personnel websites to the e-commerce websites for your business. The following is flowchart diagram of the website.
Your website will be with the following features:
- Domain ( .com, .net, .info, etc....)
- Reliable and secured hosting
- Unlimited Data Storage
- Attractive Web Design
- Multilingual (Your website will be shown in more than one language. You can choose the languages you want.)
- Responsive site (Desktop View, Mobile View and Tablet View)
- Search Engine Optimization (Your website can be easily found by customers or other people in search engines such as Google and Bing)
- Secured and Fast Business Email Accounts ([email protected])
- You can create the posts by yourselves anytime
- Social media share buttons (You can share your website or posts on Facebook, Linkedin, Twitter, etc,...)
- https for web security (your website will be such as https://www.example.com)
- Reliable security for your website to run 24 hours per day
Plan | Basic | Professional | Business | Enterprise |
---|---|---|---|---|
Domain | Yes | Yes | Yes | Yes |
Storage | Unlimited | Unlimited | Unlimited | Unlimited |
Post / Page | Unlimited | Unlimited | Unlimited | Unlimited |
You can make Posts Yourself | Yes | Yes | Yes | Yes |
SSL Certificate | Yes | Yes | Yes | Yes |
Responsive Site | Yes | Yes | Yes | Yes |
Multilingual | Yes | Yes | Yes | Yes |
SEO | Yes | Yes | Yes | Yes |
Google Analysis | Yes | Yes | Yes | Yes |
Google Business | Yes | Yes | Yes | Yes |
Google Location | Yes | Yes | Yes | Yes |
Share Buttons | Yes | Yes | Yes | Yes |
Chat API | Yes | Yes | Yes | Yes |
Security | 100% | 100% | 100% | 100% |
E-Commerce Site | Add On | Add On | Add On | Yes |
Business Email | ||||
Email Accounts | Up to 10 | Up to 20 | Up to 30 | Unlimited |
Storage | Unlimited | Unlimited | Unlimited | Unlimited |
Outlook Mail | Yes | Yes | Yes | Yes |
Mobile Mail | Yes | Yes | Yes | Yes |
Web Mail | Yes | Yes | Yes | Yes |
Spam Filter | Yes | Yes | Yes | Yes |
Speed | Fast | Fast | Fast | Fast |
Security | 100% | 100% | 100% | 100% |
Daily Support | Yes | Yes | Yes | Yes |
Price | ||||
Initial Development (Negotiable) | Negotiable | Negotiable | Negotiable | Negotiable |
Duration | Negotiable | Negotiable | Negotiable | Negotiable |
Annual Fee (Negotiable) | Negotiable | Negotiable | Negotiable | Negotiable |
ZilaStar provides the best system integration and implementation for your business.