Kinsey Computers Cc - MikroTik

6m ago
14 Views
1 Downloads
2.16 MB
52 Pages
Last View : 1d ago
Last Download : 3m ago
Upload by : Bria Koontz
Transcription

Kinsey Computers cc

» » » » David Bisschoff Durban, South Africa Work at Kinsey Computers Discovered MikroTik in 2011 Kinsey Computers cc

» Steve Discher MUM - USA Sep 2012 RouterOS by Example » Greg Sowell http://gregsowell.com » Syed Jahanzaib ated/ » YouTube / Google Kinsey Computers cc

» Load Balancing is methology with aim to spread traffic across multiple links to get better links usage. Kinsey Computers cc

» When Telkom Line goes down – how to failover? Kinsey Computers cc

Kinsey Computers cc

Kinsey Computers cc

/ip firewall address-list add address 192.168.1.0/24 disabled no list GW01 LAN Kinsey Computers cc

Kinsey Computers cc

Kinsey Computers cc

Kinsey Computers cc

/ip firewall mangle add chain prerouting dst-address-list GW01 LAN src-address-list GW01 LAN Kinsey Computers cc

Kinsey Computers cc

Kinsey Computers cc

/ip firewall mangle add action mark-connection chain forward connection-mark no-mark \ in-interface pppoe-1 new-connection-mark ISP1 conn passthrough no add action mark-connection chain forward connection-mark no-mark \ in-interface pppoe-2 new-connection-mark ISP2 conn passthrough no add action mark-connection chain forward connection-mark no-mark \ in-interface pppoe-3 new-connection-mark ISP3 conn passthrough no add action mark-connection chain forward connection-mark no-mark \ in-interface pppoe-4 new-connection-mark ISP4 conn passthrough no Kinsey Computers cc

Kinsey Computers cc

Kinsey Computers cc

/ip firewall mangle add action mark-connection chain prerouting connection-mark no-mark \ in-interface pppoe-1 new-connection-mark ISP1 conn add action mark-connection chain prerouting connection-mark no-mark \ in-interface pppoe-2 new-connection-mark ISP2 conn add action mark-connection chain prerouting connection-mark no-mark \ in-interface pppoe-3 new-connection-mark ISP3 conn add action mark-connection chain prerouting connection-mark no-mark \ in-interface pppoe-4 new-connection-mark ISP4 conn Kinsey Computers cc

Kinsey Computers cc

Kinsey Computers cc

/ip firewall mangle add action jump chain prerouting connection-mark no-mark in-interface LAN \ jump-target policy routing Kinsey Computers cc

Kinsey Computers cc

Kinsey Computers cc

Kinsey Computers cc

/ip firewall mangle add action mark-routing chain prerouting connection-mark ISP1 conn \ new-routing-mark ISP1 traffic src-address-list GW01 LAN add action mark-routing chain prerouting connection-mark ISP2 conn \ new-routing-mark ISP2 traffic src-address-list GW01 LAN add action mark-routing chain prerouting connection-mark ISP3 conn \ new-routing-mark ISP3 traffic src-address-list GW01 LAN add action mark-routing chain prerouting connection-mark ISP4 conn \ new-routing-mark ISP4 traffic src-address-list GW01 LAN Kinsey Computers cc

Kinsey Computers cc

Kinsey Computers cc

/ip firewall mangle add action mark-routing chain output connection-mark ISP1 conn \ new-routing-mark ISP1 traffic add action mark-routing chain output connection-mark ISP2 conn \ new-routing-mark ISP2 traffic add action mark-routing chain output connection-mark ISP3 conn \ new-routing-mark ISP3 traffic add action mark-routing chain output connection-mark ISP4 conn \ new-routing-mark ISP4 traffic Kinsey Computers cc

Kinsey Computers cc

Kinsey Computers cc

Kinsey Computers cc

Kinsey Computers cc

/ip firewall mangle add action mark-connection chain policy routing dst-address-type !local \ new-connection-mark ISP1 conn per-connection-classifier \ both-addresses:4/0 add action mark-connection chain policy routing dst-address-type !local \ new-connection-mark ISP2 conn per-connection-classifier \ both-addresses:4/1 add action mark-connection chain policy routing dst-address-type !local \ new-connection-mark ISP3 conn per-connection-classifier \ both-addresses:4/2 add action mark-connection chain policy routing dst-address-type !local \ new-connection-mark ISP4 conn per-connection-classifier \ both-addresses:4/3 Kinsey Computers cc

Kinsey Computers cc

Kinsey Computers cc

/ip route add check-gateway arp distance 1 gateway pppoe-1 routing-mark ISP1 traffic add check-gateway arp distance 1 gateway pppoe-2 routing-mark ISP2 traffic add check-gateway arp distance 1 gateway pppoe-3 routing-mark ISP3 traffic add check-gateway arp distance 1 gateway pppoe-4 routing-mark ISP4 traffic add check-gateway arp distance 2 gateway pppoe-1 add check-gateway arp distance 3 gateway pppoe-2 add check-gateway arp distance 4 gateway pppoe-3 add check-gateway arp distance 5 gateway pppoe-4 Kinsey Computers cc

Kinsey Computers cc

Kinsey Computers cc

Kinsey Computers cc

Kinsey Computers cc

Kinsey Computers cc

/ip firewall nat add action dst-nat chain dstnat comment \ "Port Forward tcp 80 to Mail Server 192.168.1.10" dst-port 80 \ in-interface !LAN protocol tcp to-addresses 192.168.1.10 to-ports 80 add action dst-nat chain dstnat comment \ "Port Forward tcp 443 to Mail Server 192.168.1.10" dst-port 443 \ in-interface !LAN protocol tcp to-addresses 192.168.1.10 to-ports 443 Kinsey Computers cc

Problems? Why would there be any problems? Kinsey Computers cc

HTTPS? Certain secure websites don’t work. e.g. Internet Banking with two factor authentication (PIN then Username and Password) Kinsey Computers cc

Kinsey Computers cc

Kinsey Computers cc

/ip firewall mangle add action mark-routing chain prerouting disabled no dst-port 443 \ new-routing-mark HTTPS passthrough no protocol tcp Kinsey Computers cc

Kinsey Computers cc

/ip route add check-gateway arp disabled no distance 7 dst-address 0.0.0.0/0 gateway \ pppoe-1 routing-mark HTTPS scope 30 target-scope 10 add check-gateway arp disabled no distance 8 dst-address 0.0.0.0/0 gateway \ pppoe-2 routing-mark HTTPS scope 30 target-scope 10 add check-gateway arp disabled no distance 9 dst-address 0.0.0.0/0 gateway \ pppoe-3 routing-mark HTTPS scope 30 target-scope 10 add check-gateway arp disabled no distance 10 dst-address 0.0.0.0/0 gateway \ pppoe-5 routtng-mark HTTPS scope 30 target-scope 10 Kinsey Computers cc

Help? 1. Make my solution more efficient and allow HTTPS traffic to Load Balance properly. 2. How to Load Balance with Web Proxy. Kinsey Computers cc

Simple User Traffic Logs 1. MikroTik Router 2. Raspberry Pi Setup a Raspberry Pi as a Web Proxy (no caching) for Monitoring Internet Usage. Kinsey Computers cc

David Bisschoff http://mikrotik.Bisschoff.com Kinsey Computers cc

» Load Balancing is methology with aim to spread traffic across multiple links to get better links usage. Kinsey Computers cc. Kinsey Computers cc » When Telkom Line goes down -how to failover? Kinsey Computers cc. Kinsey Computers cc /ip firewall address-list

Related Documents:

Media Convertor AT-MC103XL-20 3 Mikrotik S-3553LC20D SFP 20km BiDir (pair) 4 Mikrotik S 31DLC10D SFP 10km 3 Mikrotik S 2332LC10D SFP 10km BiDir (pair) 3 Mikrotik SFP 3m direct attach cable 2 Mikrotik S-31DLC20D 2 D-Link DGE-528T 5 Dell Memory Upgrade - 32GB - 4Rx4 DDR

RouterOS history 2001 – MikroTik v2.2 Router Software – MikroTik v2.3 Router Software npk first mentioned as method for extending functionality Jan 2002 – MikroTik

check DHCP server configuration of MikroTik. 5. Check the IP range/subnet of LAN PC client. IP range should be as per prefix/subnet which is received from MikroTik (R-Series will get prefix/subnet from MikroTik router). if LAN IP of the subnet does not match with prefix/subnet, execute the IP and IP renew process in LAN PC to get new IP. 6.

The Sword & Trowel 3 Fall Missions Conference November 15-16, 2014 Kinsey Drive Baptist Church 2626 Kinsey Drive Dalton, Georgia 30720 Sponsored by Kinsey Drive Baptist Church For More Information Call KDB

Security Dashboard Sample Report Guide Kinsey & Kinsey, Inc. Confidential 2008-2017 Page 8 User All Objects The User All Objects reports will display the current security assignments and rules for each object. Objects included: CAT, DTL, ELG, ELM, FLD, HDN, PDL, PGM, RMO, RPT, TAB, TBL, TFL, TKN, TYP Fields: User ID Full Name

RouterOS, which can be used for MTCNA preparation. MikroTik certification exams are not available at public test center. A certified trainer is the one who delivers official training and exam to students. MikroTik required students to join the class and meet face-to-face with the

MikroTik 2012 MikroTik RouterOS Workshop Load Balancing Best Practice Warsaw MUM Europe 2012

clay from static and cyclic loads. The American Petroleum Institute (API) [21] recommends methods for determining the pile capacity for lateral and axial end bearing loads in either clay or sandy soils in which all the information on lateral and axial loads at specific locations with o shore data are from laboratory soil sample data tests .