Using GUI, i can create a HTML5 SSH bookmark with empty username/password in order let clients set ssh username/password on bookmark connect. Using Netconf, i fail to create HTML5 SSH bookmarks with empty username because username is set to <USER> if i create a bookmark : with an empty username: <html5-access-profile operation='create'>
<name>my-ssh-profile</name>
<roles>my-role</roles>
<hostname>10.10.10.10</hostname>
<port>22</port>
<html5-acl-checkbox>true</html5-acl-checkbox>
<ssh>
<sessions>
<session>
<name>my-ssh-bookmark</name>
<username></username>
<password-type>variable</password-type>
<variable-password></variable-password>
</session>
</sessions>
</ssh>
</html5-access-profile> without a username: <html5-access-profile operation='create'>
<name>my-ssh-profile</name>
<roles>my-role</roles>
<hostname>10.10.10.10</hostname>
<port>22</port>
<html5-acl-checkbox>true</html5-acl-checkbox>
<ssh>
<sessions>
<session>
<name>my-ssh-bookmark</name>
<password-type>variable</password-type>
<variable-password></variable-password>
</session>
</sessions>
</ssh>
</html5-access-profile> because <USER> is the default username value according to the xsd file. Does anyone know which netconf xml i should use to force an empty username? PS: i am using a Pulse Secure 8.2R5.1
... View more