diff --git a/ui/public/locales/en.json b/ui/public/locales/en.json
index 9d4794ed85f..571f5f96faa 100644
--- a/ui/public/locales/en.json
+++ b/ui/public/locales/en.json
@@ -1420,6 +1420,7 @@
"label.reboot": "Reboot",
"label.receivedbytes": "Bytes received",
"label.recover.vm": "Recover VM",
+"label.redirect": "Redirect to:",
"label.redundantrouter": "Redundant router",
"label.redundantstate": "Redundant state",
"label.redundantvpcrouter": "Redundant VPC",
diff --git a/ui/public/locales/pt_BR.json b/ui/public/locales/pt_BR.json
index d03d467f942..4507247c26f 100644
--- a/ui/public/locales/pt_BR.json
+++ b/ui/public/locales/pt_BR.json
@@ -1297,7 +1297,9 @@
"label.reboot": "Reiniciar",
"label.receivedbytes": "Bytes recebidos",
"label.recover.vm": "Recuperar VM",
-"label.redundantrouter": "Roteador redundantee",
+"label.redirect": "Clique para acessar:",
+"label.redundantrouter": "Roteador Redundante",
+"label.redundantrouterstate": "Estado redundante",
"label.redundantstate": "Estado redundante",
"label.redundantvpcrouter": "VPC redundante",
"label.refresh": "Atualizar",
diff --git a/ui/src/components/header/ExternalLink.vue b/ui/src/components/header/ExternalLink.vue
new file mode 100644
index 00000000000..ddafd113cad
--- /dev/null
+++ b/ui/src/components/header/ExternalLink.vue
@@ -0,0 +1,54 @@
+// Licensed to the Apache Software Foundation (ASF) under one
+// or more contributor license agreements. See the NOTICE file
+// distributed with this work for additional information
+// regarding copyright ownership. The ASF licenses this file
+// to you under the Apache License, Version 2.0 (the
+// "License"); you may not use this file except in compliance
+// with the License. You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing,
+// software distributed under the License is distributed on an
+// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+// KIND, either express or implied. See the License for the
+// specific language governing permissions and limitations
+// under the License.
+
+
+
+
+
+
+ {{ $t('label.redirect') + ' ' + ( $config.plugins[0].name || $config.plugins[0].path) }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ui/src/components/header/UserMenu.vue b/ui/src/components/header/UserMenu.vue
index 397ad33b0c4..d2b7787f39e 100644
--- a/ui/src/components/header/UserMenu.vue
+++ b/ui/src/components/header/UserMenu.vue
@@ -17,7 +17,7 @@