Index: /branches/rel_apv_10_7/usr/click/webui/htdocs/new/src/apv/doc/en/admintools.xml
===================================================================
--- /branches/rel_apv_10_7/usr/click/webui/htdocs/new/src/apv/doc/en/admintools.xml	(revision 40128)
+++ /branches/rel_apv_10_7/usr/click/webui/htdocs/new/src/apv/doc/en/admintools.xml	(working copy)
@@ -5729,6 +5729,10 @@
                             <verbose_name>1</verbose_name>
                             <help_text>The external authentication server is used first. If authentication fails because such reasons as the username does not exist, the password is incorrect, and the server is unreachable, the local database will be used.</help_text>
                         </choice>
+                        <choice value="2">
+                            <verbose_name>2</verbose_name>
+                            <help_text>The external authentication server is used first. The local database will be used only if the external authentication server is unreachable (e.g., network error, timeout). If the external server responds (e.g., wrong username or password), the local database will not be used.</help_text>
+                        </choice>
                     </choices>
                 </field>
                 <field name="method" type="enum">
Index: /branches/rel_apv_10_7/usr/click/webui/htdocs/new/src/apv/doc/ja/admintools.xml
===================================================================
--- /branches/rel_apv_10_7/usr/click/webui/htdocs/new/src/apv/doc/ja/admintools.xml	(revision 40128)
+++ /branches/rel_apv_10_7/usr/click/webui/htdocs/new/src/apv/doc/ja/admintools.xml	(working copy)
@@ -5421,6 +5421,10 @@
                             <verbose_name>1</verbose_name>
                             <help_text>外部認証サーバーが最初に使用されます。 ユーザー名が存在しない、パスワードが正しくない、サーバーに到達できないなどの理由で認証が失敗した場合、ローカルデータベースが使用されます</help_text>
                         </choice>
+                        <choice value="2">
+                            <verbose_name>2</verbose_name>
+                            <help_text>外部認証サーバーのみを使用します。外部認証サーバーに接続できない場合（ネットワークエラーやタイムアウトなど）のみローカルデータベースを使用します。外部認証サーバーが応答した場合（例：ユーザー名やパスワードが間違っている場合）、ローカルデータベースは使用されません。</help_text>
+                        </choice>
                     </choices>
                 </field>
                 <field name="method" type="enum">
Index: /branches/rel_apv_10_7/usr/click/webui/htdocs/new/src/apv/doc/zh-cn/admintools.xml
===================================================================
--- /branches/rel_apv_10_7/usr/click/webui/htdocs/new/src/apv/doc/zh-cn/admintools.xml	(revision 40128)
+++ /branches/rel_apv_10_7/usr/click/webui/htdocs/new/src/apv/doc/zh-cn/admintools.xml	(working copy)
@@ -5420,6 +5420,10 @@
                             <verbose_name>1</verbose_name>
                             <help_text>优先使用外部认证服务器。如果由于某些原因（比如用户名不存在、密码不正确或者服务器无法访问）导致认证失败，那么本地数据库才会被使用。</help_text>
                         </choice>
+                        <choice value="2">
+                            <verbose_name>2</verbose_name>
+                            <help_text>仅使用外部认证服务器，只有在外部认证服务器无法连接（如网络错误、超时等）时才使用本地数据库。如果外部认证服务器有响应（如用户名或密码错误），则不会尝试本地数据库。</help_text>
+                        </choice>
                     </choices>
                 </field>
                 <field name="method" type="enum">
Index: /branches/rel_apv_10_7/usr/click/webui/htdocs/new/src/apv/doc/zh-tw/admintools.xml
===================================================================
--- /branches/rel_apv_10_7/usr/click/webui/htdocs/new/src/apv/doc/zh-tw/admintools.xml	(revision 40128)
+++ /branches/rel_apv_10_7/usr/click/webui/htdocs/new/src/apv/doc/zh-tw/admintools.xml	(working copy)
@@ -5420,6 +5420,10 @@
                             <verbose_name>1</verbose_name>
                             <help_text>優先使用外部認證服務器。如果由於某些原因（比如用戶名不存在、密碼不正確或者服務器無法訪問）導致認證失敗，那麼本地資料庫才會被使用。</help_text>
                         </choice>
+                        <choice value="2">
+                            <verbose_name>2</verbose_name>
+                            <help_text>僅使用外部認證服務器，只有在外部認證服務器無法連線（如網路錯誤、逾時等）時才會使用本地資料庫。如果外部認證服務器有回應（如用戶名或密碼錯誤），則不會嘗試本地資料庫。</help_text>
+                        </choice>
                     </choices>
                 </field>
                 <field name="method" type="enum">
Index: /branches/rel_apv_10_7/usr/click/webui/htdocs/new/src/apv/models/admintools/user/__init__.py
===================================================================
--- /branches/rel_apv_10_7/usr/click/webui/htdocs/new/src/apv/models/admintools/user/__init__.py	(revision 40128)
+++ /branches/rel_apv_10_7/usr/click/webui/htdocs/new/src/apv/models/admintools/user/__init__.py	(working copy)
@@ -564,6 +564,7 @@
     priority = EnumField(condition=ValueCondition('enable_aaa',True),verbose_name = _('Priority'),default=0,optional=True,values=(
                     (0,'0'),
                     (1,'1'),
+                    (2,'2'),
                     ))
     method = EnumField(verbose_name = _('Method'),default='radius',optional=True,values=(
                     ('radius','RADIUS'),
@@ -652,7 +653,7 @@
             self.cli.set_enable()
             result = self.cli.cmd('show admin aaa all',
                                    RegexParser('admin aaa (?P<enable_aaa>on|off)', MATCHONE, reflags=re.S),
-                                   RegexParser('admin aaa on (?P<priority>0|1)', MATCHONE, reflags=re.S),
+                                   RegexParser('admin aaa on (?P<priority>0|1|2)', MATCHONE, reflags=re.S),
                                    RegexParser('admin aaa method (?P<method>RADIUS|TAC_X|LDAPS|LDAP)', MATCHONE, reflags=re.S),
                                    RegexParser('admin aaa authorize (?P<enable_aaa_authorize>on|off)', MATCHONE, reflags=re.S),
                                    RegexParser('admin aaa server es04 verifycert (?P<enable_certificate_verification>0|1)', MATCHONE, reflags=re.S))
