{"id":169446,"date":"2026-06-22T11:52:56","date_gmt":"2026-06-22T08:52:56","guid":{"rendered":"https:\/\/computingforgeeks.com\/?p=169446"},"modified":"2026-06-22T11:52:56","modified_gmt":"2026-06-22T08:52:56","slug":"aaa-radius-tacacs-explained","status":"publish","type":"post","link":"https:\/\/computingforgeeks.com\/aaa-radius-tacacs-explained\/","title":{"rendered":"AAA Explained: RADIUS vs TACACS+ on Cisco"},"content":{"rendered":"<p>Local accounts on every device stop scaling the moment you have more than a handful of them. Add an engineer and you touch every router and switch; remove one and you hope you caught them all. AAA fixes that by moving identity off the devices and onto a central server, and the two protocols that carry it are RADIUS and TACACS+. Knowing what each A stands for and which protocol to reach for is the heart of this topic.<\/p>\n\n<p>This guide explains authentication, authorization, and accounting, compares RADIUS against TACACS+ point by point, and configures the AAA client side on a Cisco router with real output. It builds on the local passwords from <a href=\"https:\/\/computingforgeeks.com\/cisco-device-access-control-passwords\/\">device access control<\/a>, which become the fallback when the AAA server cannot be reached.<\/p>\n\n<p><em>Configured and captured on a Cisco IOS 15.2 router in June 2026; the AAA client config below is real, and the server addresses are examples.<\/em><\/p>\n\n<h2>What AAA stands for<\/h2>\n\n<p>AAA is three separate questions about a user, answered in order. Authentication proves who you are, authorization decides what you may do, and accounting records what you did.<\/p>\n\n<table>\n<thead><tr><th>The A<\/th><th>Question it answers<\/th><th>What it controls<\/th><\/tr><\/thead>\n<tbody>\n<tr><td>Authentication<\/td><td>Who are you?<\/td><td>Verifying identity with a username and password, a token, or a certificate<\/td><\/tr>\n<tr><td>Authorization<\/td><td>What are you allowed to do?<\/td><td>Which commands, privilege level, or resources the identity may use<\/td><\/tr>\n<tr><td>Accounting<\/td><td>What did you do?<\/td><td>Logging commands run, session length, and data sent, for audit or billing<\/td><\/tr>\n<\/tbody>\n<\/table>\n\n<p>The three are independent. A user can be authenticated (the login succeeds) but still be authorized for only a handful of commands, and every action they take can be accounted to their name in a log. Separating them is what lets you give a junior engineer read-only access while the logs still show exactly who did what.<\/p>\n\n<h2>The AAA players: client, server, and the NAS<\/h2>\n\n<p>AAA has two roles. The <strong>AAA server<\/strong> holds the identities and makes the decisions. The <strong>network access server (NAS)<\/strong> is the device a user connects to, which forwards the request to the server and enforces the answer. On a Cisco network the NAS is the router or switch itself, acting as the AAA client.<\/p>\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1340\" height=\"740\" src=\"https:\/\/computingforgeeks.com\/wp-content\/uploads\/2026\/06\/aaa-radius-tacacs-topology.png\" alt=\"AAA diagram: a user logs in to R1 the NAS, which queries a RADIUS server on UDP 1812 for network access or a TACACS+ server on TCP 49 for device administration\" class=\"wp-image-169442\" title=\"\" srcset=\"https:\/\/computingforgeeks.com\/wp-content\/uploads\/2026\/06\/aaa-radius-tacacs-topology.png 1340w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2026\/06\/aaa-radius-tacacs-topology-300x166.png 300w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2026\/06\/aaa-radius-tacacs-topology-1024x565.png 1024w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2026\/06\/aaa-radius-tacacs-topology-768x424.png 768w\" sizes=\"auto, (max-width: 1340px) 100vw, 1340px\" \/><\/figure>\n\n\n<p>A user or admin never talks to the AAA server directly. They log in to the NAS, the NAS asks the server over RADIUS or TACACS+, and the server replies with a permit or deny. The <a href=\"https:\/\/computingforgeeks.com\/network-devices-routers-switches-firewalls-explained\/\">routers and switches<\/a> are the clients in this exchange, never the decision makers, which is exactly why a central server scales: change a password once on the server and every device honors it.<\/p>\n\n<h2>RADIUS vs TACACS+<\/h2>\n\n<p>Both protocols carry AAA between the NAS and the server, but they were built for different jobs, and the CCNA expects you to tell them apart.<\/p>\n\n<table>\n<thead><tr><th>Property<\/th><th>RADIUS<\/th><th>TACACS+<\/th><\/tr><\/thead>\n<tbody>\n<tr><td>Standard<\/td><td>Open standard (RFC 2865)<\/td><td>Cisco proprietary<\/td><\/tr>\n<tr><td>Transport and ports<\/td><td>UDP 1812 auth, 1813 accounting (older 1645\/1646)<\/td><td>TCP 49<\/td><\/tr>\n<tr><td>Encryption<\/td><td>Only the password in the packet<\/td><td>The entire packet body<\/td><\/tr>\n<tr><td>AAA functions<\/td><td>Combines authentication and authorization<\/td><td>Separates all three independently<\/td><\/tr>\n<tr><td>Per-command authorization<\/td><td>Limited<\/td><td>Yes, command by command<\/td><\/tr>\n<tr><td>Primary use<\/td><td>Network access: 802.1X, VPN, end users<\/td><td>Device administration<\/td><\/tr>\n<tr><td>Multivendor<\/td><td>Broad support<\/td><td>Mostly Cisco<\/td><\/tr>\n<\/tbody>\n<\/table>\n\n<p>Two rows decide most exam questions. RADIUS encrypts only the password and runs over UDP, while TACACS+ encrypts the whole packet over TCP, so TACACS+ hides the commands and replies, not just the credentials. And because TACACS+ separates authorization, it can approve or deny each command a network admin types, which RADIUS was never designed to do well. That separation is why device administration leans on TACACS+ and network access leans on RADIUS.<\/p>\n\n<h2>Configure AAA on a Cisco router<\/h2>\n\n<p>Everything AAA starts with one command. <code>aaa new-model<\/code> switches the device from the legacy line-password model to AAA method lists:<\/p>\n\n\n<pre class=\"wp-block-code code\"><code>configure terminal\naaa new-model<\/code><\/pre>\n\n\n<p>Next, define the servers. Modern IOS uses a named server block for each one, with the shared key the NAS and server must both agree on:<\/p>\n\n\n<pre class=\"wp-block-code code\"><code>radius server RAD1\n address ipv4 10.10.10.10 auth-port 1812 acct-port 1813\n key RadSecret123\n exit\ntacacs server TAC1\n address ipv4 10.10.10.20\n key TacSecret123\n exit<\/code><\/pre>\n\n\n<p>The <code>key<\/code> is a shared secret, not a hash, and it appears in clear text in the config unless you turn on <code>service password-encryption<\/code>, so treat it like any other credential. With the servers defined, point the method lists at them and keep <code>local<\/code> as a fallback:<\/p>\n\n\n<pre class=\"wp-block-code code\"><code>aaa authentication login default group tacacs+ local\naaa authorization exec default group tacacs+ local\naaa accounting exec default start-stop group tacacs+<\/code><\/pre>\n\n\n<p>Each method list reads left to right. The login list tries the TACACS+ group first and falls back to the local database only if no server answers, which is the safety net that keeps you from being locked out. A server that is reachable but rejects your credentials does not fall through to local; the fallback fires only when the server is unreachable, not when it says no. Verify the AAA framework after configuring it:<\/p>\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"2560\" height=\"412\" src=\"https:\/\/computingforgeeks.com\/wp-content\/uploads\/2026\/06\/wm-aaa-methods.png\" alt=\"Cisco IOS show running-config section aaa: aaa new-model with authentication, authorization, and accounting method lists using group tacacs+ local\" class=\"wp-image-169443\" title=\"\" srcset=\"https:\/\/computingforgeeks.com\/wp-content\/uploads\/2026\/06\/wm-aaa-methods.png 2560w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2026\/06\/wm-aaa-methods-300x48.png 300w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2026\/06\/wm-aaa-methods-1024x165.png 1024w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2026\/06\/wm-aaa-methods-768x124.png 768w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2026\/06\/wm-aaa-methods-1536x247.png 1536w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2026\/06\/wm-aaa-methods-2048x330.png 2048w\" sizes=\"auto, (max-width: 2560px) 100vw, 2560px\" \/><\/figure>\n\n\n<p>The output confirms <code>aaa new-model<\/code> is on and shows the three method lists, each using <code>group tacacs+<\/code> with a <code>local<\/code> fallback. The server definitions carry the ports that separate the two protocols on the wire:<\/p>\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"2560\" height=\"504\" src=\"https:\/\/computingforgeeks.com\/wp-content\/uploads\/2026\/06\/wm-aaa-servers.png\" alt=\"Cisco IOS radius server on UDP 1812 1813 and tacacs server on TCP 49 with shared keys\" class=\"wp-image-169444\" title=\"\" srcset=\"https:\/\/computingforgeeks.com\/wp-content\/uploads\/2026\/06\/wm-aaa-servers.png 2560w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2026\/06\/wm-aaa-servers-300x59.png 300w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2026\/06\/wm-aaa-servers-1024x202.png 1024w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2026\/06\/wm-aaa-servers-768x151.png 768w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2026\/06\/wm-aaa-servers-1536x302.png 1536w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2026\/06\/wm-aaa-servers-2048x403.png 2048w\" sizes=\"auto, (max-width: 2560px) 100vw, 2560px\" \/><\/figure>\n\n\n<p>The RADIUS server shows its auth and accounting ports, 1812 and 1813, while the TACACS+ server uses the single TCP port 49. Actually authenticating a user still needs a reachable RADIUS or TACACS+ server holding the accounts; the configuration above is the client side that every Cisco device needs before it can ask one.<\/p>\n\n<h2>When to use RADIUS and when to use TACACS+<\/h2>\n\n<p>The choice follows the job. Reach for <strong>TACACS+ for device administration<\/strong>: logging engineers into routers, switches, and firewalls over <a href=\"https:\/\/computingforgeeks.com\/ccna-labs-ssh-access-configuration-on-gns3-and-packet-tracer\/\">SSH<\/a>, where per-command authorization and full-packet encryption matter, and where the audit trail of who typed what is the point. Reach for <strong>RADIUS for network access<\/strong>: authenticating end users and devices onto the network through <a href=\"https:\/\/computingforgeeks.com\/wireless-networking-fundamentals\/\">802.1X on wired and wireless<\/a>, VPN logins, and any multivendor environment, because RADIUS is an open standard that nearly everything speaks. Many networks run both, TACACS+ for the admins and RADIUS for the users, against the same identity store.<\/p>\n\n<h2>Practice AAA, RADIUS, and TACACS+<\/h2>\n\n<p>Run the questions to lock in the three A&#8217;s, the RADIUS-versus-TACACS+ differences, and the configuration commands, then use the flashcards for quick recall.<\/p>\n\n<div class=\"cfg-quiz\" data-quiz=\"{\n  &quot;id&quot;: &quot;aaa-radius-tacacs&quot;,\n  &quot;title&quot;: &quot;AAA, RADIUS, and TACACS+ quiz&quot;,\n  &quot;objective&quot;: &quot;Compare authentication, authorization, and accounting concepts (5.8)&quot;,\n  &quot;intro&quot;: &quot;Ten questions on AAA and the two protocols that carry it: authentication versus authorization versus accounting, RADIUS versus TACACS+ ports, transport, and encryption, and the Cisco AAA configuration. Each answer has a written explanation.&quot;,\n  &quot;questions&quot;: [\n    {&quot;q&quot;: &quot;Which part of AAA answers the question &#039;who are you?&#039;&quot;, &quot;options&quot;: [&quot;Authorization&quot;, &quot;Authentication&quot;, &quot;Accounting&quot;, &quot;Access control&quot;], &quot;answer&quot;: 1, &quot;explanation&quot;: &quot;Authentication verifies identity, usually with a username and password, a token, or a certificate. Authorization then decides what that identity may do, and accounting records what it did.&quot;, &quot;validated&quot;: &quot;doc&quot;},\n    {&quot;q&quot;: &quot;A junior engineer can log in but is allowed to run only a few commands. Which part of AAA enforces that limit?&quot;, &quot;options&quot;: [&quot;Authentication&quot;, &quot;Authorization&quot;, &quot;Accounting&quot;, &quot;Encryption&quot;], &quot;answer&quot;: 1, &quot;explanation&quot;: &quot;Authorization controls what an authenticated user may do: which commands, privilege level, or resources. The login itself is authentication; the per-command limit is authorization.&quot;, &quot;validated&quot;: &quot;doc&quot;},\n    {&quot;q&quot;: &quot;What does the accounting part of AAA provide?&quot;, &quot;options&quot;: [&quot;It verifies the user&#039;s password&quot;, &quot;It logs what the user did, such as commands run and session length&quot;, &quot;It assigns an IP address&quot;, &quot;It encrypts the management session&quot;], &quot;answer&quot;: 1, &quot;explanation&quot;: &quot;Accounting records actions for audit or billing: commands executed, session duration, and data transferred, all tied to the user&#039;s identity.&quot;, &quot;validated&quot;: &quot;doc&quot;},\n    {&quot;type&quot;: &quot;match&quot;, &quot;q&quot;: &quot;Match each property to the correct protocol.&quot;, &quot;pairs&quot;: [{&quot;left&quot;: &quot;Open standard (RFC 2865)&quot;, &quot;right&quot;: &quot;RADIUS&quot;}, {&quot;left&quot;: &quot;Cisco proprietary&quot;, &quot;right&quot;: &quot;TACACS+&quot;}, {&quot;left&quot;: &quot;Encrypts the entire packet&quot;, &quot;right&quot;: &quot;TACACS+&quot;}, {&quot;left&quot;: &quot;Encrypts only the password&quot;, &quot;right&quot;: &quot;RADIUS&quot;}], &quot;explanation&quot;: &quot;RADIUS is an open standard that encrypts only the password and runs over UDP. TACACS+ is Cisco proprietary, encrypts the whole packet, and runs over TCP, which is why it suits device administration.&quot;, &quot;validated&quot;: &quot;doc&quot;},\n    {&quot;type&quot;: &quot;numeric&quot;, &quot;q&quot;: &quot;Which TCP port does TACACS+ use? Type the number.&quot;, &quot;answer&quot;: &quot;49&quot;, &quot;hint&quot;: &quot;A single, low TCP port.&quot;, &quot;placeholder&quot;: &quot;e.g. 53&quot;, &quot;explanation&quot;: &quot;TACACS+ uses TCP port 49 for all of its traffic. RADIUS, by contrast, uses UDP 1812 for authentication and 1813 for accounting.&quot;, &quot;validated&quot;: &quot;doc&quot;},\n    {&quot;type&quot;: &quot;numeric&quot;, &quot;q&quot;: &quot;Which UDP port does modern RADIUS use for authentication? Type the number.&quot;, &quot;answer&quot;: &quot;1812&quot;, &quot;hint&quot;: &quot;Accounting is the next port up.&quot;, &quot;placeholder&quot;: &quot;e.g. 1645&quot;, &quot;explanation&quot;: &quot;RADIUS authentication uses UDP 1812 and accounting uses 1813. The older ports 1645 and 1646 are still seen on legacy gear.&quot;, &quot;validated&quot;: &quot;lab&quot;},\n    {&quot;q&quot;: &quot;How much of the packet does RADIUS encrypt?&quot;, &quot;options&quot;: [&quot;The entire packet body&quot;, &quot;Only the password field&quot;, &quot;Nothing, it is clear text&quot;, &quot;Only the username&quot;], &quot;answer&quot;: 1, &quot;explanation&quot;: &quot;RADIUS encrypts only the password in the Access-Request. The rest, including the username and attributes, travels in clear text. TACACS+ encrypts the entire packet body, hiding the commands as well.&quot;, &quot;validated&quot;: &quot;doc&quot;},\n    {&quot;q&quot;: &quot;Which protocol is Cisco proprietary?&quot;, &quot;options&quot;: [&quot;RADIUS&quot;, &quot;TACACS+&quot;, &quot;Both&quot;, &quot;Neither, both are open standards&quot;], &quot;answer&quot;: 1, &quot;explanation&quot;: &quot;TACACS+ is Cisco proprietary. RADIUS is an open standard (RFC 2865) with broad multivendor support, which is part of why it dominates network access.&quot;, &quot;validated&quot;: &quot;doc&quot;},\n    {&quot;type&quot;: &quot;multi&quot;, &quot;q&quot;: &quot;Which statements about TACACS+ are correct? Select all that apply.&quot;, &quot;options&quot;: [&quot;It runs over TCP port 49&quot;, &quot;It can authorize commands one by one&quot;, &quot;It separates authentication, authorization, and accounting&quot;, &quot;It is the open-standard choice for multivendor network access&quot;], &quot;answers&quot;: [0, 1, 2], &quot;explanation&quot;: &quot;TACACS+ runs over TCP 49, supports per-command authorization, and treats the three A&#039;s independently, which is why it suits device administration. The open-standard, multivendor network-access role belongs to RADIUS.&quot;, &quot;validated&quot;: &quot;doc&quot;},\n    {&quot;q&quot;: &quot;In aaa authentication login default group tacacs+ local, what does the local keyword do?&quot;, &quot;options&quot;: [&quot;It blocks all local logins&quot;, &quot;It is tried first, before the TACACS+ server&quot;, &quot;It is a fallback to the local user database if the TACACS+ server is unreachable&quot;, &quot;It encrypts the TACACS+ key&quot;], &quot;answer&quot;: 2, &quot;explanation&quot;: &quot;Method lists are read left to right, so the device tries the TACACS+ group first and falls back to local accounts only if no server answers. Leaving local off is the classic way to lock everyone out during a server outage.&quot;, &quot;validated&quot;: &quot;lab&quot;}\n  ]\n}\n\" data-quiz-count=\"10\"><div class=\"cfg-quiz-loading\">Loading quiz...<\/div><\/div>\n\n\n<p>Flip through the deck until the ports and differences are automatic, or grab the Anki pack to review them anywhere:<\/p>\n\n<div class=\"cfg-fc\" data-fc=\"{\n  &quot;id&quot;: &quot;aaa-radius-tacacs&quot;,\n  &quot;title&quot;: &quot;AAA, RADIUS, and TACACS+ Flashcards&quot;,\n  &quot;objective&quot;: &quot;Compare authentication, authorization, and accounting concepts (5.8)&quot;,\n  &quot;intro&quot;: &quot;The AAA facts worth knowing cold: the three A&#039;s, RADIUS versus TACACS+ on ports, transport, and encryption, and the Cisco AAA configuration. Tap a card to flip it, then mark whether you knew it.&quot;,\n  &quot;cards&quot;: [\n    {&quot;front&quot;: &quot;Authentication&quot;, &quot;back&quot;: &quot;The first A: proves who you are, with a username and password, a token, or a certificate.&quot;},\n    {&quot;front&quot;: &quot;Authorization&quot;, &quot;back&quot;: &quot;The second A: decides what an authenticated identity may do, which commands, privilege level, or resources.&quot;},\n    {&quot;front&quot;: &quot;Accounting&quot;, &quot;back&quot;: &quot;The third A: records what the user did, commands run, session length, and data sent, for audit or billing.&quot;},\n    {&quot;front&quot;: &quot;What is a NAS in AAA?&quot;, &quot;back&quot;: &quot;The network access server: the router or switch a user connects to. It forwards the request to the AAA server and enforces the answer, acting as the AAA client. It never makes the decision itself.&quot;},\n    {&quot;front&quot;: &quot;RADIUS: standard and transport&quot;, &quot;back&quot;: &quot;Open standard (RFC 2865) over UDP. Authentication on port 1812, accounting on 1813 (older gear uses 1645\/1646).&quot;},\n    {&quot;front&quot;: &quot;TACACS+: standard and transport&quot;, &quot;back&quot;: &quot;Cisco proprietary over TCP port 49.&quot;},\n    {&quot;front&quot;: &quot;RADIUS vs TACACS+ encryption&quot;, &quot;back&quot;: &quot;RADIUS encrypts only the password; the rest is clear text. TACACS+ encrypts the entire packet body, hiding the commands too.&quot;},\n    {&quot;front&quot;: &quot;RADIUS vs TACACS+ AAA functions&quot;, &quot;back&quot;: &quot;RADIUS combines authentication and authorization. TACACS+ separates all three, which is what allows per-command authorization.&quot;},\n    {&quot;front&quot;: &quot;When to use RADIUS&quot;, &quot;back&quot;: &quot;Network access: 802.1X for wired and wireless, VPN logins, and end users, especially in multivendor environments where the open standard matters.&quot;},\n    {&quot;front&quot;: &quot;When to use TACACS+&quot;, &quot;back&quot;: &quot;Device administration: logging engineers into routers, switches, and firewalls, where per-command authorization and full-packet encryption matter.&quot;},\n    {&quot;front&quot;: &quot;aaa new-model&quot;, &quot;back&quot;: &quot;The command that switches a Cisco device from the legacy line-password model to AAA method lists. Everything AAA requires it first.&quot;},\n    {&quot;front&quot;: &quot;AAA method list order&quot;, &quot;back&quot;: &quot;Methods are tried left to right. aaa authentication login default group tacacs+ local tries the TACACS+ server first, then falls back to local accounts if no server answers.&quot;},\n    {&quot;front&quot;: &quot;The AAA shared key&quot;, &quot;back&quot;: &quot;A secret the NAS and server must both agree on. It is not a hash and shows in clear text unless service password-encryption is on, so protect it. A mismatch causes silent authentication failures.&quot;},\n    {&quot;front&quot;: &quot;The most common AAA lockout&quot;, &quot;back&quot;: &quot;Configuring a method list with no local or enable fallback, so every login fails when the AAA server is unreachable, including yours. Always end the list with a fallback.&quot;},\n    {&quot;front&quot;: &quot;Which two ports does RADIUS use?&quot;, &quot;back&quot;: &quot;UDP 1812 for authentication and UDP 1813 for accounting (legacy 1645\/1646).&quot;},\n    {&quot;front&quot;: &quot;Can RADIUS do per-command authorization?&quot;, &quot;back&quot;: &quot;Not well. RADIUS combines authentication and authorization and was built for network access. Per-command authorization is a TACACS+ strength.&quot;}\n  ]\n}\n\" data-fc-anki=\"https:\/\/computingforgeeks.com\/wp-content\/uploads\/2026\/06\/ccna-aaa-radius-tacacs-flashcards.apkg\"><div class=\"cfg-fc-loading\">Loading flashcards...<\/div><\/div>\n\n\n<h2>The AAA mistake that locks out everyone<\/h2>\n\n<p>The most common AAA failure is configuring <code>aaa authentication login default group tacacs+<\/code> with no <code>local<\/code> fallback, then watching every login fail the moment the server is unreachable, including yours. Always end the method list with <code>local<\/code> (or <code>enable<\/code>) so a server outage degrades to local accounts instead of a total lockout, and keep a console session open while you test, exactly as with <a href=\"https:\/\/computingforgeeks.com\/cisco-device-base-configuration\/\">base device configuration<\/a>. The other classic trip-up is a shared key that does not match on both ends: the server silently rejects the request and the NAS reports an authentication failure that looks like a wrong password. With AAA centralizing identity, the <a href=\"https:\/\/computingforgeeks.com\/quickly-prepare-for-ccna-200-301-exam\/\">CCNA 200-301 study roadmap<\/a> shows where the rest of the Security Fundamentals topics fit.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>AAA explained and compared: authentication, authorization, accounting, and RADIUS vs TACACS+ ports, transport, and encryption, with Cisco AAA configuration.<\/p>\n","protected":false},"author":3,"featured_media":169445,"comment_status":"open","ping_status":"","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[299,55],"tags":[524,525],"cfg_series":[39888],"class_list":["post-169446","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-how-to","category-networking","tag-ccna","tag-cisco","cfg_series-ccna-200-301"],"_links":{"self":[{"href":"https:\/\/computingforgeeks.com\/wp-json\/wp\/v2\/posts\/169446","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/computingforgeeks.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/computingforgeeks.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/computingforgeeks.com\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/computingforgeeks.com\/wp-json\/wp\/v2\/comments?post=169446"}],"version-history":[{"count":1,"href":"https:\/\/computingforgeeks.com\/wp-json\/wp\/v2\/posts\/169446\/revisions"}],"predecessor-version":[{"id":169447,"href":"https:\/\/computingforgeeks.com\/wp-json\/wp\/v2\/posts\/169446\/revisions\/169447"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/computingforgeeks.com\/wp-json\/wp\/v2\/media\/169445"}],"wp:attachment":[{"href":"https:\/\/computingforgeeks.com\/wp-json\/wp\/v2\/media?parent=169446"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/computingforgeeks.com\/wp-json\/wp\/v2\/categories?post=169446"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/computingforgeeks.com\/wp-json\/wp\/v2\/tags?post=169446"},{"taxonomy":"cfg_series","embeddable":true,"href":"https:\/\/computingforgeeks.com\/wp-json\/wp\/v2\/cfg_series?post=169446"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}