The most viewed posts

Registry Reviver

How to clean up Windows Computer

About Desktop Icons in Windows Computer

Driver Booster

CCleaner

Myanmar font and keyboard for Windows

Advanced System Care

some (JavaScript Array Method)

How to make a computer secure and run faster

Web Development Services

The most viewed items

Desktop Hard Disk

Dell Inspiron 5559

HP ProBook 430

SONY Playstation Portable

Laptop RAM

External Hard Disk

Laptop

ZilaStar ICT Nov 28 2018, 17:40:41

How to configure DHCP in Cisco IOS Routers

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.


ZilaStar ICT Nov 28 2018, 17:01:59

How to configure PPP in Cisco Routers

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.


ZilaStar ICT Nov 28 2018, 14:31:57

How to configure OSPF in Cisco Router

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.


ZilaStar ICT Nov 28 2018, 14:14:26

How to configure EIGRP in Cisco Routers

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)


ZilaStar ICT Nov 28 2018, 10:54:09

How to configure RIP in Cisco Routers

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)


ZilaStar ICT Nov 27 2018, 21:50:28

Securing Cisco Networking Devices

We should set passwords in Cisco networking devices so that non authorized people can't access easily. The followings are the ways to set passwords in Cisco networking devices by CLI.

(Note : Most of Cisco Networking Devices are needed to be configured by CLI)


*** 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 ICT Nov 27 2018, 14:57:12

Email Service (Business or Private)

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.

 

PlanBasicProfessionalBusinessEnterprise
Email AccountsUp to 10Up to 20Up to 30Unlimited
StorageUnlimitedUnlimitedUnlimitedUnlimited
Outlook MailYesYesYesYes
Mobile MailYesYesYesYes
Web MailYesYesYesYes
Spam FilterYesYesYesYes
SpeedFastFastFastFast
Security100%100%100%100%
Daily SupportYesYesYesYes
Price
Initial YearNegotiableNegotiableNegotiableNegotiable
DurationNegotiableNegotiableNegotiableNegotiable
Annual FeeNegotiableNegotiableNegotiableNegotiable



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 ICT Nov 26 2018, 15:16:53

Point of Sale (POS) System

ZilaStar provides Web based or Cloud based Point of Sale system for your business with the following features.

  • Stock management 
  • VAT, GST, customer and multi tiers taxation
  • Sale register with transactions logging
  • Quotation and invoicing
  • Expenses logging
  • Cashup
  • Receipt and invoice printing and/or emailing
  • Barcode generation and printing
  • Suppliers and Customers database
  • Multiuser with permission control
  • Reporting on sales, orders, expenses, inventory status
  • Receivings
  • Giftcard
  • Rewards
  • Restaurant tables


ZilaStar ICT Nov 26 2018, 11:12:14

Android Application Development

I've recently developed an android application (mhk.apk) for the website (www.myathtutkhaung.com).

 


ZilaStar ICT Nov 25 2018, 11:10:12

Windows Application Development

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.

 


ZilaStar ICT Nov 24 2018, 11:59:21

Web Development Services

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.

Website Development
 

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

 
PlanBasicProfessionalBusinessEnterprise
DomainYesYesYesYes
StorageUnlimitedUnlimitedUnlimitedUnlimited
Post / PageUnlimitedUnlimitedUnlimitedUnlimited
You can make Posts YourselfYesYesYesYes
SSL CertificateYesYesYesYes
Responsive SiteYesYesYesYes
MultilingualYesYesYesYes
SEOYesYesYesYes
Google AnalysisYesYesYesYes
Google BusinessYesYesYesYes
Google LocationYesYesYesYes
Share ButtonsYesYesYesYes
Chat APIYesYesYesYes
Security100%100%100%100%
E-Commerce SiteAdd OnAdd OnAdd OnYes
Business Email
Email AccountsUp to 10Up to 20Up to 30Unlimited
StorageUnlimitedUnlimitedUnlimitedUnlimited
Outlook MailYesYesYesYes
Mobile MailYesYesYesYes
Web MailYesYesYesYes
Spam FilterYesYesYesYes
SpeedFastFastFastFast
Security100%100%100%100%
Daily SupportYesYesYesYes
Price
Initial Development (Negotiable)NegotiableNegotiableNegotiableNegotiable
DurationNegotiableNegotiableNegotiableNegotiable
Annual Fee (Negotiable)NegotiableNegotiableNegotiableNegotiable


ZilaStar ICT Nov 24 2018, 08:33:09

System Integration

ZilaStar provides the best system integration and implementation for your business.

System Integration


Page : 29 of 30
To Contact
Available Services
Terms and Conditions