{"id":95432,"date":"2020-09-29T07:42:38","date_gmt":"2020-09-29T05:42:38","guid":{"rendered":"https:\/\/prohoster.info\/blog\/administrirovanie\/razbor-samogo-demokratichnogo-iz-sd-wan-arhitektura-nastrojka-administrirovanie-i-podvodnye-kamni"},"modified":"2020-09-29T07:42:38","modified_gmt":"2020-09-29T05:42:38","slug":"razbor-samogo-demokratichnogo-iz-sd-wan-arhitektura-nastrojka-administrirovanie-i-podvodnye-kamni","status":"publish","type":"post","link":"https:\/\/prohoster.info\/en\/blog\/administrirovanie\/razbor-samogo-demokratichnogo-iz-sd-wan-arhitektura-nastrojka-administrirovanie-i-podvodnye-kamni","title":{"rendered":"An overview of the most democratic SD-WAN: architecture, setup, administration, and pitfalls","gt_translate_keys":[{"key":"rendered","format":"text"}]},"content":{"rendered":"<p>Given the number of questions we've been receiving about SD-WAN, it seems that the technology is starting to take root in Russia. Vendors, of course, are not idle and are offering their own concepts, while some brave pioneers are already implementing it in their networks. <\/p>\n<p>We work with almost all vendors, and over the years I've had the chance to explore the architecture of every major developer of software-defined solutions in our lab. SD-WAN from Fortinet stands out a bit, as it has integrated traffic balancing functionality into its firewall software. This solution is more democratic, making it attractive to companies that are not yet ready for major changes but want to use their communication channels more effectively. <\/p>\n<p>In this article, I want to explain how to configure and work with SD-WAN from Fortinet, who this solution is suitable for, and what potential pitfalls one might encounter. <noindex><a rel=\"nofollow\" name=\"habracut\"><\/a><\/noindex><\/p>\n<p>The most notable players in the SD-WAN market can be categorized into one of two types: <\/p>\n<p>1. Startups that have created SD-WAN solutions from scratch. The most successful among these often receive a huge boost when acquired by large companies \u2013 this is the story of Cisco\/Viptela, VMWare\/VeloCloud, Nuage\/Nokia.<\/p>\n<p>2. Large network vendors that have developed SD-WAN solutions by enhancing the programmability and manageability of their traditional routers \u2013 this includes Juniper and Huawei.<\/p>\n<p>Fortinet has managed to find its own path. Its firewall software includes functionality that allows it to merge interfaces into virtual channels and balance the load between them using complex algorithms compared to conventional routing. This functionality is what is referred to as SD-WAN. Can what Fortinet has done be called SD-WAN? The market is gradually forming an understanding that Software-Defined entails the separation of Control Plane from Data Plane, dedicated controllers, and orchestrators. Fortinet has none of this. Centralized management is optional and is offered via the traditional tool, FortiManager. However, I believe it is unnecessary to seek abstract truths or spend time arguing over terminology. In the real world, any approach has its strengths and weaknesses. The best option is to understand them and be able to choose solutions that align with specific tasks. <\/p>\n<p>I will try to explain, with screenshots in hand, how Fortinet's SD-WAN looks and what it can do.<\/p>\n<h3>How Everything Works <\/h3>\n<p>\nLet\u2019s suppose you have two branches connected by two data transmission channels. These data channels are combined into a group, similar to how regular Ethernet interfaces are combined in an LACP Port Channel. Long-time users will recall PPP Multilink \u2013 this is also a suitable analogy. The channels can be physical ports, VLAN SVIs as well as <a class=\"wpil_keyword_link\" href=\"https:\/\/prohoster.info\/en\/vpn\/\"   title=\"VPN\" data-wpil-keyword-link=\"linked\"  data-wpil-monitor-id=\"134\">VPN<\/a> or GRE tunnels. <\/p>\n<p>VPN or GRE are typically used to connect the local networks of branches over the Internet. Physical ports are used when there are L2 connections between locations, or for connecting over dedicated MPLS\/VPN, if we are fine with communication without Overlay and encryption. Another scenario where physical ports are used within the SD-WAN group is balancing the local exit of users to the Internet.<\/p>\n<p>Our setup has four firewalls and two VPN tunnels operating through two 'service providers'. The diagram looks like this:<\/p>\n<p><img decoding=\"async\" alt=\"An overview of the most democratic SD-WAN: architecture, setup, administration, and pitfalls\" src=\"\/wp-content\/uploads\/2020\/09\/db404c731bec1fbda86fbbfc98802762.jpg\" style=\"display:block;margin: 0 auto;\" \/><br \/>\n<br \/>\nVPN tunnels are configured in interface mode to resemble Point-to-Point connections between devices with IP addresses on P2P interfaces that can be pinged to ensure that the connection through a specific tunnel is working. To encrypt traffic and send it to the other side, it\u2019s enough to route it into the tunnel. An alternative is traffic selection for encryption using subnet lists, which can complicate the administrator's task as the configuration becomes more complex. In a large network, the ADVPN technology can be used to build a VPN; this is similar to Cisco's DMVPN or Huawei's DVPN, which simplifies configuration.<\/p>\n<p>                        <b class=\"spoiler_title\">Site-to-Site VPN config for two devices with BGP routing on both sides<\/b><br \/>\n                        <code><\/p>\n<p>\"Data Center\" (DC)<br \/>\n\"Branch\" (BRN)<\/p>\n<p>config system interface<br \/>\nedit \"WAN1\"<br \/>\nset vdom \"Internet\"<br \/>\n\u2003\u2003set ip 1.1.1.1 255.255.255.252<br \/>\n\u2003\u2003set allowaccess ping<br \/>\n\u2003\u2003set role wan<br \/>\nset interface \"DC-BRD\"<br \/>\n\u2003\u2003set vlanid 111<br \/>\n\u2003next <br \/>\nedit \"WAN2\"<br \/>\nset vdom \"Internet\"<br \/>\n\u2003\u2003set ip 3.3.3.1 255.255.255.252<br \/>\n\u2003\u2003set allowaccess ping<br \/>\n\u2003\u2003set role lan<br \/>\nset interface \"DC-BRD\"<br \/>\n\u2003\u2003set vlanid 112<br \/>\n\u2003next<br \/>\nedit \"BRN-Ph1-1\"<br \/>\nset vdom \"Internet\"<br \/>\n\u2003\u2003set ip 192.168.254.1 255.255.255.255<br \/>\n\u2003\u2003set allowaccess ping<br \/>\n\u2003\u2003set type tunnel<br \/>\n\u2003\u2003set remote-ip 192.168.254.2 255.255.255.255<br \/>\nset interface \"WAN1\"<br \/>\n\u2003next<br \/>\nedit \"BRN-Ph1-2\"<br \/>\nset vdom \"Internet\"<br \/>\n\u2003\u2003set ip 192.168.254.3 255.255.255.255<br \/>\n\u2003\u2003set allowaccess ping<br \/>\n\u2003\u2003set type tunnel<br \/>\n\u2003\u2003set remote-ip 192.168.254.4 255.255.255.255<br \/>\nset interface \"WAN2\"<br \/>\n\u2003next<br \/>\nend<\/p>\n<p>config vpn ipsec phase1-interface<br \/>\nedit \"BRN-Ph1-1\"<br \/>\nset interface \"WAN1\"<br \/>\n\u2003\u2003set local-gw 1.1.1.1<br \/>\n\u2003\u2003set peertype any<br \/>\n\u2003\u2003set net-device disable<br \/>\n\u2003\u2003set proposal aes128-sha1<br \/>\n\u2003\u2003set dhgrp 2<br \/>\n\u2003\u2003set remote-gw 2.2.2.1<br \/>\n\u2003\u2003set psksecret ***<br \/>\n\u2003next<br \/>\nedit \"BRN-Ph1-2\"<br \/>\nset interface \"WAN2\"<br \/>\n\u2003\u2003set local-gw 3.3.3.1<br \/>\n\u2003\u2003set peertype any<br \/>\n\u2003\u2003set net-device disable<br \/>\n\u2003\u2003set proposal aes128-sha1<br \/>\n\u2003\u2003set dhgrp 2<br \/>\n\u2003\u2003set remote-gw 4.4.4.1<br \/>\n\u2003\u2003set psksecret ***<br \/>\n\u2003next<br \/>\nend<\/p>\n<p>config vpn ipsec phase2-interface<br \/>\nedit \"BRN-Ph2-1\"<br \/>\nset phase1name \"BRN-Ph1-1\"<br \/>\n\u2003\u2003set proposal aes256-sha256<br \/>\n\u2003\u2003set dhgrp 2<br \/>\n\u2003next<br \/>\nedit \"BRN-Ph2-2\"<br \/>\nset phase1name \"BRN-Ph1-2\"<br \/>\n\u2003\u2003set proposal aes256-sha256<br \/>\n\u2003\u2003set dhgrp 2<br \/>\n\u2003next<br \/>\nend<\/p>\n<p>config router static<br \/>\nedit 1<br \/>\nset gateway 1.1.1.2<br \/>\nset device \"WAN1\"<br \/>\n\u2003next<br \/>\nedit 3<br \/>\nset gateway 3.3.3.2<br \/>\nset device \"WAN2\"<br \/>\n\u2003next<br \/>\nend<\/p>\n<p>config router bgp<br \/>\nset as 65002<br \/>\nset router-id 10.1.7.1<br \/>\nset ebgp-multipath enable<br \/>\nconfig neighbor<br \/>\nedit \"192.168.254.2\"<br \/>\nset remote-as 65003<br \/>\nnext<br \/>\nedit \"192.168.254.4\"<br \/>\nset remote-as 65003<br \/>\nnext<br \/>\nend<\/p>\n<p>config network<br \/>\nedit 1<br \/>\nset prefix 10.1.0.0 255.255.0.0<br \/>\nnext<br \/>\nend <\/p>\n<p>config system interface<br \/>\nedit \"WAN1\"<br \/>\nset vdom \"Internet\"<br \/>\nset ip 2.2.2.1 255.255.255.252<br \/>\n\u2003\u2003set allowaccess ping<br \/>\n\u2003\u2003set role wan<br \/>\nset interface \"BRN-BRD\"<br \/>\n\u2003\u2003set vlanid 111<br \/>\n\u2003next<br \/>\nedit \"WAN2\"<br \/>\nset vdom \"Internet\"<br \/>\nset ip 4.4.4.1 255.255.255.252<br \/>\n\u2003\u2003set allowaccess ping<br \/>\n\u2003\u2003set role wan<br \/>\nset interface \"BRN-BRD\"<br \/>\nset vlanid 114<br \/>\n\u2003next<br \/>\nedit \"DC-Ph1-1\"<br \/>\nset vdom \"Internet\"<br \/>\nset ip 192.168.254.2 255.255.255.255<br \/>\n\u2003\u2003set allowaccess ping<br \/>\n\u2003\u2003set type tunnel<br \/>\nset remote-ip 192.168.254.1 255.255.255.255<br \/>\nset interface \"WAN1\"<br \/>\n\u2003next<br \/>\nedit \"DC-Ph1-2\"<br \/>\nset vdom \"Internet\"<br \/>\nset ip 192.168.254.4 255.255.255.255<br \/>\n\u2003\u2003set allowaccess ping<br \/>\n\u2003\u2003set type tunnel<br \/>\nset remote-ip 192.168.254.3 255.255.255.255<br \/>\nset interface \"WAN2\"<br \/>\n\u2003next<br \/>\nend<\/p>\n<p>config vpn ipsec phase1-interface<br \/>\nedit \"DC-Ph1-1\"<br \/>\nset interface \"WAN1\"<br \/>\nset local-gw 2.2.2.1<br \/>\nset peertype any<br \/>\nset net-device disable<br \/>\nset proposal aes128-sha1<br \/>\nset dhgrp 2<br \/>\nset remote-gw 1.1.1.1<br \/>\nset psksecret ***<br \/>\nnext<br \/>\nedit \"DC-Ph1-2\"<br \/>\nset interface \"WAN2\"<br \/>\nset local-gw 4.4.4.1<br \/>\nset peertype any<br \/>\nset net-device disable<br \/>\nset proposal aes128-sha1<br \/>\nset dhgrp 2<br \/>\nset remote-gw 3.3.3.1<br \/>\nset psksecret ***<br \/>\nnext<br \/>\nend<\/p>\n<p>config vpn ipsec phase2-interface<br \/>\nedit \"DC-Ph2-1\"<br \/>\nset phase1name \"DC-Ph1-1\"<br \/>\nset proposal aes128-sha1<br \/>\nset dhgrp 2<br \/>\nnext<br \/>\nedit \"DC2-Ph2-2\"<br \/>\nset phase1name \"DC-Ph1-2\"<br \/>\nset proposal aes128-sha1<br \/>\nset dhgrp 2<br \/>\nnext<br \/>\nend<\/p>\n<p>config router static<br \/>\nedit 1<br \/>\nset gateway 2.2.2.2<br \/>\nset device \"WAN1\"<br \/>\n\u2003next<br \/>\nedit 3<br \/>\nset gateway 4.4.4.2<br \/>\nset device \"WAN2\"<br \/>\n\u2003next<br \/>\nend<\/p>\n<p>config router bgp<br \/>\nset as 65003<br \/>\nset router-id 10.200.7.1<br \/>\nset ebgp-multipath enable<br \/>\nconfig neighbor<br \/>\nedit \"192.168.254.1\"<br \/>\nset remote-as 65002<br \/>\nnext<br \/>\nedit \"192.168.254.3\"<br \/>\nset remote-as 65002<br \/>\nnext<br \/>\nend<\/p>\n<p>config network<br \/>\nedit 1<br \/>\nset prefix 10.200.0.0 255.255.0.0<br \/>\nnext<br \/>\n end <\/p>\n<p><\/code><\/p>\n<p>I am providing the configuration in text format because I believe it is more convenient to configure the VPN this way. Almost all settings are the same on both sides, and they can be copied and pasted in this format. If you do the same in the web interface, it's easy to make mistakes \u2014 to forget checkboxes or enter the wrong values. <\/p>\n<p>After we have added interfaces to the bundle<\/p>\n<p><img decoding=\"async\" alt=\"An overview of the most democratic SD-WAN: architecture, setup, administration, and pitfalls\" src=\"\/wp-content\/uploads\/2020\/09\/caab2c83dc97ebeae20ce24cee69dfe6.jpg\" style=\"display:block;margin: 0 auto;\" \/><br \/>\n<br \/>\nall routes and security policies can refer to it rather than the individual interfaces that are part of it. At the very least, traffic from internal networks to the SD-WAN should be allowed. When creating rules for them, security measures such as IPS, antivirus, and HTTPS inspection can be applied.<\/p>\n<p><img decoding=\"async\" alt=\"An overview of the most democratic SD-WAN: architecture, setup, administration, and pitfalls\" src=\"\/wp-content\/uploads\/2020\/09\/ef4b4f24e5b7644ad754632082da2b59.jpg\" style=\"display:block;margin: 0 auto;\" \/><br \/>\n<br \/>\nFor the bundle, SD-WAN Rules are configured. These are rules that define the load balancing algorithm for specific traffic. They are similar to routing policies in Policy-Based Routing, only instead of setting next-hop or a standard outgoing interface as a result of traffic falling under the policy, it specifies the interfaces added to the SD-WAN bundle along with the traffic load balancing algorithm among these interfaces. <\/p>\n<p>Traffic can be distinguished from the general flow based on L3-L4 information, recognized applications, internet services (URL and IP), as well as recognized users of workstations and laptops. After that, one of the following load balancing algorithms can be assigned to the distinguished traffic:<\/p>\n<p><img decoding=\"async\" alt=\"An overview of the most democratic SD-WAN: architecture, setup, administration, and pitfalls\" src=\"\/wp-content\/uploads\/2020\/09\/3744630184aea0b9ffaa471910885736.jpg\" style=\"display:block;margin: 0 auto;\" \/><br \/>\n<br \/>\nIn the Interface Preference list, the interfaces already added to the bundle are selected for servicing this type of traffic. By not adding all interfaces, you can limit the specific channels through which, say, email travels, if you want to avoid burdening expensive channels with high SLA. In FortiOS 6.4.1, it became possible to group interfaces added to the SD-WAN bundle into zones, creating, for example, one zone for communication with remote sites and another for local internet access using NAT. Yes, traffic going to the public internet can also be balanced.<\/p>\n<h3>On Load Balancing Algorithms<br \/>\n<\/h3>\n<p>\nRegarding how Fortigate (the firewall from Fortinet) can split traffic between channels, there are two interesting options that are not very common in the market:<\/p>\n<p><b>Lowest Cost (SLA)<\/b> \u2013 from all the interfaces currently satisfying SLA, the one with the lowest cost value as set manually by the administrator is chosen; this mode is suitable for 'bulk' traffic, such as backups and file transfers. <\/p>\n<p><b>Best Quality (SLA)<\/b> \u2013 this algorithm, in addition to the usual latency, jitter, and packet loss, allows Fortigate to also consider the current load on the channel; this mode is suitable for 'sensitive' traffic, such as VoIP and video conferencing.<\/p>\n<p>For these algorithms, a performance measurement for the communication channel \u2013 Performance SLA \u2013 needs to be configured. This measurement periodically checks (check interval) the information on SLA compliance: losses (packet loss), latency (latency), and jitter (jitter) in the communication channel, and can 'discard' channels that currently do not meet threshold quality values \u2013 losing too many packets or exhibiting excessively high latency. Additionally, the measurement monitors the channel's status and may temporarily remove it from the bundle in case of repeated loss of responses (failures before inactive). Upon recovery, after several consecutive responses (restore link after), the measurement will automatically return the channel to the bundle, and data will once again begin to be transmitted over it.<\/p>\n<p>This is how the 'meter' setup looks: <\/p>\n<p><img decoding=\"async\" alt=\"An overview of the most democratic SD-WAN: architecture, setup, administration, and pitfalls\" src=\"\/wp-content\/uploads\/2020\/09\/455be7a8df6ffab47c6fd5b3a763e5cd.jpg\" style=\"display:block;margin: 0 auto;\" \/><br \/>\n<br \/>\nIn the web interface, the available protocols for tests include ICMP-Echo-request, HTTP-GET, and DNS request. In the command line, there are a few more options: TCP-echo and UDP-echo are available, as well as a specialized quality measurement protocol \u2014 TWAMP.<\/p>\n<p><img decoding=\"async\" alt=\"An overview of the most democratic SD-WAN: architecture, setup, administration, and pitfalls\" src=\"\/wp-content\/uploads\/2020\/09\/218d9805451cd7eb846d97fc7d95dab5.jpg\" style=\"display:block;margin: 0 auto;\" \/><br \/>\n<br \/>\nMeasurement results can also be viewed in the web interface: <\/p>\n<p><img decoding=\"async\" alt=\"An overview of the most democratic SD-WAN: architecture, setup, administration, and pitfalls\" src=\"\/wp-content\/uploads\/2020\/09\/f02ef988ba41f8068656f83996b50085.jpg\" style=\"display:block;margin: 0 auto;\" \/><br \/>\n<br \/>\nAnd in the command line: <\/p>\n<p><img decoding=\"async\" alt=\"An overview of the most democratic SD-WAN: architecture, setup, administration, and pitfalls\" src=\"\/wp-content\/uploads\/2020\/09\/8b07ce808da2ee70d675a0fd009c4e10.jpg\" style=\"display:block;margin: 0 auto;\" \/><br \/>\n<\/p>\n<h3>Troubleshooting<\/h3>\n<p>\nIf you created a rule but things aren't working as expected, you should check the Hit Count value in the SD-WAN Rules list. It will show whether the traffic is hitting this rule at all:<\/p>\n<p><img decoding=\"async\" alt=\"An overview of the most democratic SD-WAN: architecture, setup, administration, and pitfalls\" src=\"\/wp-content\/uploads\/2020\/09\/a1fceb96cecd09a292e0949b9719335e.jpg\" style=\"display:block;margin: 0 auto;\" \/><br \/>\n<br \/>\nOn the configuration page of the measurement tool, you can see the channel parameters changing over time. The threshold value of the parameter is marked by a dotted line.<\/p>\n<p><img decoding=\"async\" alt=\"An overview of the most democratic SD-WAN: architecture, setup, administration, and pitfalls\" src=\"\/wp-content\/uploads\/2020\/09\/70f738769673d0a80f7382a3b0dd6b47.jpg\" style=\"display:block;margin: 0 auto;\" \/><br \/>\n<br \/>\nIn the web interface, you can see how traffic is distributed in terms of the volume of transmitted\/received data and the number of sessions:<\/p>\n<p><img decoding=\"async\" alt=\"An overview of the most democratic SD-WAN: architecture, setup, administration, and pitfalls\" src=\"\/wp-content\/uploads\/2020\/09\/1824160280f684a734d553f152f2153d.jpg\" style=\"display:block;margin: 0 auto;\" \/><br \/>\n<br \/>\nIn addition to all this, there is a great opportunity to trace packet passage with maximum detail. When operating in a real network, many routing policies, firewall rules, and traffic distribution across SD-WAN ports accumulate in the device configuration. All this interacts in complex ways, and although the vendor provides detailed flowchart diagrams of the packet processing algorithms, it is very important to be able to not just build and verify theories, but to see where the traffic is actually going.<\/p>\n<p>For example, the following command set<\/p>\n<p><code>diagnose debug flow filter saddr 10.200.64.15<br \/>\ndiagnose debug flow filter daddr 10.1.7.2<br \/>\ndiagnose debug flow show function-name<br \/>\ndiagnose debug enable<br \/>\ndiagnose debug trace 2<\/code><\/p>\n<p>Will allow you to trace two packets with the source address 10.200.64.15 and the destination address 10.1.7.2.<br \/>\nPing 10.7.1.2 from 10.200.64.15 twice and observe the output in the console.<\/p>\n<p>First packet:<\/p>\n<p><img decoding=\"async\" alt=\"An overview of the most democratic SD-WAN: architecture, setup, administration, and pitfalls\" src=\"\/wp-content\/uploads\/2020\/09\/eb0f907f41b573df1b4044e13edac140.jpg\" style=\"display:block;margin: 0 auto;\" \/><br \/>\n<br \/>\nSecond packet:<\/p>\n<p><img decoding=\"async\" alt=\"An overview of the most democratic SD-WAN: architecture, setup, administration, and pitfalls\" src=\"\/wp-content\/uploads\/2020\/09\/509f4ac1cf2db597cfe201812a942288.jpg\" style=\"display:block;margin: 0 auto;\" \/><br \/>\n<br \/>\nHere is the first packet received by the firewall:<br \/>\n<code>id=20085 trace_id=475 func=print_pkt_detail line=5605 msg=\"vd-Internet:0 received a packet(proto=1, 10.200.64.15:42-&gt;10.1.7.2:2048) from DMZ-Office. type=8, code=0, id=42, seq=0.\"<br \/>\nVDOM \u2013 Internet, Proto=1 (ICMP), <b>DMZ-Office \u2013 name of the L3 interface. <\/b>Type=8 \u2013 Echo.<\/code><\/p>\n<p>A new session was created for it:<br \/>\n<code>msg=\"allocate a new session-0006a627\"<\/code><\/p>\n<p>A match was found in the routing policy settings.<br \/>\n<code>msg=\"Match policy routing id=2136539137: to 10.1.7.2 via ifindex-110\"<\/code><\/p>\n<p>It turns out that the packet needs to be sent through one of the VPN tunnels:<br \/>\n<code>\"find a route: flag=04000000 gw-192.168.254.1 via DC-Ph1-1\"<\/code><\/p>\n<p>A permissive rule is found in the firewall policies:<br \/>\n<code>msg=\"Allowed by Policy-3:\"<\/code><\/p>\n<p>The packet is encrypted and sent into the VPN tunnel:<br \/>\n<code>func=ipsecdev_hard_start_xmit line=789 msg=\"enter IPsec interface-DC-Ph1-1\"<br \/>\nfunc=_ipsecdev_hard_start_xmit line=666 msg=\"IPsec tunnel-DC-Ph1-1\"<br \/>\nfunc=esp_output4 line=905 msg=\"IPsec encrypt\/auth\"<\/code><\/p>\n<p>The encrypted packet is sent to the gateway address for this WAN interface:<br \/>\n<code>msg=\"send to 2.2.2.2 via intf-WAN1\"<\/code><\/p>\n<p>For the second packet, everything happens similarly, but it is sent through a different VPN tunnel and exits through a different firewall port:<br \/>\n<code>func=ipsecdev_hard_start_xmit line=789 msg=\"enter IPsec interface-DC-Ph1-2\"<br \/>\nfunc=_ipsecdev_hard_start_xmit line=666 msg=\"IPsec tunnel-DC-Ph1-2\"<br \/>\nfunc=esp_output4 line=905 msg=\"IPsec encrypt\/auth\"<br \/>\nfunc=ipsec_output_finish line=622 msg=\"send to 4.4.4.2 via intf-WAN2\"<\/code><\/p>\n<h3>Benefits of the solution<br \/>\n<\/h3>\n<p>\n<b>Reliable functionality and user-friendly interface. <\/b>The feature set that existed in FortiOS before SD-WAN was fully retained. This means we have not a newly developed software, but a mature system from a trusted firewall vendor, with a traditional set of network functions and an easy-to-learn web interface. How many SD-WAN vendors offer Remote-Access VPN functionality on their end devices, for example?<\/p>\n<p><b>Level 80 security. <\/b>FortiGate is among the top solutions for firewalling. There are many resources available online for configuring and administering firewalls, and there are plenty of security professionals in the job market who are already familiar with the vendor's solutions.<\/p>\n<p><b>Zero cost for SD-WAN functionality. <\/b>Building an SD-WAN network on FortiGate costs as much as building a regular WAN network on it, since no additional licenses are needed to implement SD-WAN functionality. <\/p>\n<p><b>Low entry price. <\/b>Fortigate has a good range of devices for various performance levels. The smallest and most affordable models are quite suitable for setting up an office or point of sale for, say, 3-5 employees. Many vendors simply do not have such low-performance and affordable models. <\/p>\n<p><b>High performance. <\/b>Narrowing the SD-WAN functionality to traffic balancing allowed the company to release a specialized SD-WAN ASIC, which ensures that SD-WAN operations do not degrade the overall performance of the firewall. <\/p>\n<p><b>The ability to implement an entire office on Fortinet equipment. <\/b>This includes a pair of firewalls, switches, and Wi-Fi access points. Such an office is easy and convenient to manage \u2013 switches and access points are registered on the firewalls and managed from there. For example, this is what a switch port may look like from the firewall interface that manages this switch:<\/p>\n<p><img decoding=\"async\" alt=\"An overview of the most democratic SD-WAN: architecture, setup, administration, and pitfalls\" src=\"\/wp-content\/uploads\/2020\/09\/edd23e0aa9a77d3acb7eee22203a423d.jpg\" style=\"display:block;margin: 0 auto;\" \/><br \/>\n<br \/>\n<b>No controllers as a single point of failure. <\/b>The vendor emphasizes this, but it can only be partly seen as a plus because for vendors that do have controllers, ensuring their redundancy is inexpensive, most often in the price of a small amount of computing resources in a virtualized environment.<\/p>\n<h3>Things to pay attention to<br \/>\n<\/h3>\n<p>\n<b>Absence of separation between Control Plane and Data Plane<\/b>This means that the network needs to be configured either manually or using traditional management tools\u2014FortiManager. For vendors that have implemented such a division, the network assembles itself. The administrator may only need to adjust its topology, perhaps prohibit something here and there, nothing more. However, the advantage of FortiManager is that it can manage not only firewalls but also switches and Wi-Fi access points, essentially managing the entire network. <\/p>\n<p><b>Conditional growth of manageability. <\/b>Due to the fact that traditional tools are used for automating network configuration, the manageability of the network with the implementation of SD-WAN increases only slightly. On the other hand, new functionalities become available more quickly, as the vendor first releases them only for the firewall operating system (which immediately allows them to be used), and only later supplements the management system with the necessary interfaces.<\/p>\n<p><b>Some functionalities may be available from the command line but not from the web interface. <\/b>It's not that daunting to occasionally access the command line to configure something, but it's concerning when you can't see in the web interface that something has already been configured via the command line. However, this usually pertains to the newest features, and gradually, with updates to FortiOS, the web interface capabilities are enhanced.<\/p>\n<h3>Who it's suitable for<\/h3>\n<p>\n<b>Those with not too many branches.<\/b> Implementing an SD-WAN solution with complex central components for a network of 8-10 branches might not be worth it\u2014you will have to spend money on licenses for SD-WAN devices and system virtualization resources to host central components. Small companies generally have limited computational resources. In Fortinet's case, it's simply enough to purchase firewalls. <\/p>\n<p><b>Those with a lot of small branches. <\/b>For many vendors, the minimum price of the solution per branch is quite high and may not be attractive from the end client's business perspective. Fortinet offers small devices at a very appealing price. <\/p>\n<p><b>Those who are not yet ready to step too far. <\/b>Implementing SD-WAN with controllers, proprietary routing, and a new approach to network planning and management can be a significant step for some clients. Yes, this implementation will ultimately help optimize the use of communication channels and the work of administrators, but first, a lot of new knowledge will need to be acquired. For those not yet ready to change paradigms but who want to get more out of their communication channels, the solution from Fortinet is exactly what they need.<br \/>\n<br \/>Source: <a content=\"nofollow\" rel=\"nofollow\" href=\"https:\/\/habr.com\/ru\/company\/croc\/blog\/520620\/\">habr.com<\/a> <\/p>","protected":false,"gt_translate_keys":[{"key":"rendered","format":"html"}]},"excerpt":{"rendered":"<p>\u0421\u0443\u0434\u044f \u043f\u043e \u0447\u0438\u0441\u043b\u0443 \u0432\u043e\u043f\u0440\u043e\u0441\u043e\u0432, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043d\u0430\u043c \u0441\u0442\u0430\u043b\u0438 \u043f\u0440\u0438\u043b\u0435\u0442\u0430\u0442\u044c \u043f\u043e SD-WAN, \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u044f \u043d\u0430\u0447\u0430\u043b\u0430 \u043e\u0441\u043d\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u043d\u043e \u043f\u0440\u0438\u0436\u0438\u0432\u0430\u0442\u044c\u0441\u044f \u0432 \u0420\u043e\u0441\u0441\u0438\u0438. \u0412\u0435\u043d\u0434\u043e\u0440\u044b, \u0435\u0441\u0442\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u043e, \u043d\u0435 \u0434\u0440\u0435\u043c\u043b\u044e\u0442 \u0438 \u043f\u0440\u0435\u0434\u043b\u0430\u0433\u0430\u044e\u0442 \u0441\u0432\u043e\u0438 \u043a\u043e\u043d\u0446\u0435\u043f\u0446\u0438\u0438, \u0430 \u043d\u0435\u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u0441\u043c\u0435\u043b\u044c\u0447\u0430\u043a\u0438 \u043f\u0435\u0440\u0432\u043e\u043f\u0440\u043e\u0445\u043e\u0434\u0446\u044b \u0443\u0436\u0435 \u0432\u043d\u0435\u0434\u0440\u044f\u044e\u0442 \u0438\u0445 \u0443 \u0441\u0435\u0431\u044f \u043d\u0430 \u0441\u0435\u0442\u0438. \u041c\u044b \u0440\u0430\u0431\u043e\u0442\u0430\u0435\u043c \u043f\u043e\u0447\u0442\u0438 \u0441\u043e \u0432\u0441\u0435\u043c\u0438 \u0432\u0435\u043d\u0434\u043e\u0440\u0430\u043c\u0438, \u0438 \u0437\u0430 \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u043b\u0435\u0442 \u0432 \u043d\u0430\u0448\u0435\u0439 \u043b\u0430\u0431\u043e\u0440\u0430\u0442\u043e\u0440\u0438\u0438 \u044f \u0443\u0441\u043f\u0435\u043b \u043f\u043e\u043a\u043e\u043f\u0430\u0442\u044c\u0441\u044f \u0432 \u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u0435 \u043a\u0430\u0436\u0434\u043e\u0433\u043e \u043a\u0440\u0443\u043f\u043d\u043e\u0433\u043e [&hellip;]<\/p>\n","protected":false,"gt_translate_keys":[{"key":"rendered","format":"html"}]},"author":1,"featured_media":95433,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[688],"tags":[],"class_list":["post-95432","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-administrirovanie"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.2 - aioseo.com -->\n\t<meta name=\"description\" content=\"\u0421\u0443\u0434\u044f \u043f\u043e \u0447\u0438\u0441\u043b\u0443 \u0432\u043e\u043f\u0440\u043e\u0441\u043e\u0432, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043d\u0430\u043c \u0441\u0442\u0430\u043b\u0438 \u043f\u0440\u0438\u043b\u0435\u0442\u0430\u0442\u044c \u043f\u043e SD-WAN, \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u044f \u043d\u0430\u0447\u0430\u043b\u0430 \u043e\u0441\u043d\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u043d\u043e \u043f\u0440\u0438\u0436\u0438\u0432\u0430\u0442\u044c\u0441\u044f \u0432 \u0420\u043e\u0441\u0441\u0438\u0438.\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Yuri Gagarin\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/prohoster.info\/en\/blog\/administrirovanie\/razbor-samogo-demokratichnogo-iz-sd-wan-arhitektura-nastrojka-administrirovanie-i-podvodnye-kamni\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.2\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"ProHoster | \u041a\u0443\u043f\u0438\u0442\u044c \u043d\u0430\u0434\u0435\u0436\u043d\u044b\u0439 \u0445\u043e\u0441\u0442\u0438\u043d\u0433 \u0434\u043b\u044f \u0441\u0430\u0439\u0442\u043e\u0432 \u0441 \u0437\u0430\u0449\u0438\u0442\u043e\u0439 \u043e\u0442 DDoS, VPS VDS \u0441\u0435\u0440\u0432\u0435\u0440\u044b\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"\ud83e\udd47\u0420\u0430\u0437\u0431\u043e\u0440 \u0441\u0430\u043c\u043e\u0433\u043e \u0434\u0435\u043c\u043e\u043a\u0440\u0430\u0442\u0438\u0447\u043d\u043e\u0433\u043e \u0438\u0437 SD-WAN: \u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u0430, \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0430, \u0430\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u0438 \u043f\u043e\u0434\u0432\u043e\u0434\u043d\u044b\u0435 \u043a\u0430\u043c\u043d\u0438 | ProHoster\" \/>\n\t\t<meta property=\"og:description\" content=\"\u0421\u0443\u0434\u044f \u043f\u043e \u0447\u0438\u0441\u043b\u0443 \u0432\u043e\u043f\u0440\u043e\u0441\u043e\u0432, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043d\u0430\u043c \u0441\u0442\u0430\u043b\u0438 \u043f\u0440\u0438\u043b\u0435\u0442\u0430\u0442\u044c \u043f\u043e SD-WAN, \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u044f \u043d\u0430\u0447\u0430\u043b\u0430 \u043e\u0441\u043d\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u043d\u043e \u043f\u0440\u0438\u0436\u0438\u0432\u0430\u0442\u044c\u0441\u044f \u0432 \u0420\u043e\u0441\u0441\u0438\u0438.\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/prohoster.info\/en\/blog\/administrirovanie\/razbor-samogo-demokratichnogo-iz-sd-wan-arhitektura-nastrojka-administrirovanie-i-podvodnye-kamni\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/prohoster.info\/wp-content\/uploads\/2021\/11\/logo-350.jpg\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/prohoster.info\/wp-content\/uploads\/2021\/11\/logo-350.jpg\" \/>\n\t\t<meta property=\"og:image:width\" content=\"350\" \/>\n\t\t<meta property=\"og:image:height\" content=\"350\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2020-09-29T05:42:38+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2020-09-29T05:42:38+00:00\" \/>\n\t\t<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/prohoster\" \/>\n\t\t<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/prohoster\" \/>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"\ud83e\udd47An analysis of the most accessible SD-WAN: architecture, setup, administration, and pitfalls | ProHoster","description":"Given the number of questions we've started receiving about SD-WAN, the technology seems to be gaining substantial traction in Russia.","canonical_url":"https:\/\/prohoster.info\/en\/blog\/administrirovanie\/razbor-samogo-demokratichnogo-iz-sd-wan-arhitektura-nastrojka-administrirovanie-i-podvodnye-kamni","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":null,"og:locale":"en_US","og:site_name":"ProHoster | \u041a\u0443\u043f\u0438\u0442\u044c \u043d\u0430\u0434\u0435\u0436\u043d\u044b\u0439 \u0445\u043e\u0441\u0442\u0438\u043d\u0433 \u0434\u043b\u044f \u0441\u0430\u0439\u0442\u043e\u0432 \u0441 \u0437\u0430\u0449\u0438\u0442\u043e\u0439 \u043e\u0442 DDoS, VPS VDS \u0441\u0435\u0440\u0432\u0435\u0440\u044b","og:type":"article","og:title":"\ud83e\udd47\u0420\u0430\u0437\u0431\u043e\u0440 \u0441\u0430\u043c\u043e\u0433\u043e \u0434\u0435\u043c\u043e\u043a\u0440\u0430\u0442\u0438\u0447\u043d\u043e\u0433\u043e \u0438\u0437 SD-WAN: \u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u0430, \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0430, \u0430\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u0438 \u043f\u043e\u0434\u0432\u043e\u0434\u043d\u044b\u0435 \u043a\u0430\u043c\u043d\u0438 | ProHoster","og:description":"\u0421\u0443\u0434\u044f \u043f\u043e \u0447\u0438\u0441\u043b\u0443 \u0432\u043e\u043f\u0440\u043e\u0441\u043e\u0432, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043d\u0430\u043c \u0441\u0442\u0430\u043b\u0438 \u043f\u0440\u0438\u043b\u0435\u0442\u0430\u0442\u044c \u043f\u043e SD-WAN, \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u044f \u043d\u0430\u0447\u0430\u043b\u0430 \u043e\u0441\u043d\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u043d\u043e \u043f\u0440\u0438\u0436\u0438\u0432\u0430\u0442\u044c\u0441\u044f \u0432 \u0420\u043e\u0441\u0441\u0438\u0438.","og:url":"https:\/\/prohoster.info\/en\/blog\/administrirovanie\/razbor-samogo-demokratichnogo-iz-sd-wan-arhitektura-nastrojka-administrirovanie-i-podvodnye-kamni","og:image":"https:\/\/prohoster.info\/wp-content\/uploads\/2021\/11\/logo-350.jpg","og:image:secure_url":"https:\/\/prohoster.info\/wp-content\/uploads\/2021\/11\/logo-350.jpg","og:image:width":350,"og:image:height":350,"article:published_time":"2020-09-29T05:42:38+00:00","article:modified_time":"2020-09-29T05:42:38+00:00","article:publisher":"https:\/\/www.facebook.com\/prohoster","article:author":"https:\/\/www.facebook.com\/prohoster"},"aioseo_meta_data":{"post_id":"95432","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[]},"schema_type":null,"schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"seo_analyzer_scan_date":null,"breadcrumb_settings":null,"limit_modified_date":false,"reviewed_by":null,"ai":null,"created":"2021-02-28 11:05:30","updated":"2026-02-04 14:42:07","focus_keyword":null,"additional_keywords":null,"truseo_locale":null},"gt_translate_keys":[{"key":"link","format":"url"}],"_links":{"self":[{"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/posts\/95432","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/comments?post=95432"}],"version-history":[{"count":1,"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/posts\/95432\/revisions"}],"predecessor-version":[{"id":156763,"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/posts\/95432\/revisions\/156763"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/media\/95433"}],"wp:attachment":[{"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/media?parent=95432"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/categories?post=95432"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/tags?post=95432"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}