
1.通过WinSCP软件进入Netscaler里面
/var/netscaler/logon/themes/net theme/custom_media
目录
把安卓客户端和二维码放到该目录下.

上传后的地址为https://xxxx.com/logon/themes/Default/custom_media/xxxx.apk
2.修改NetScaler base.Css文件.
/var/netscaler/logon/themes/net theme/css
目录下的base.css文件

3.在base.css文件里的代码
原代码
#logonbelt-bottomshadow {
/* background: url("../../../media/Screen_shadow_bottom.png") no-repeat transparent;*/ /*Image doesn't exist on server */
position: relative;
bottom: 0;
margin: auto;
width: 700px;
height: 300px;
background-position: center;
background-repeat:no-repeat;
background-position-x:center;
background-position-y:center;
修改成
#logonbelt-bottomshadow {
/* background: url("../../../media/Screen_shadow_bottom.png") no-repeat transparent;*/ /*Image doesn't exist on server */
position: relative;
bottom: 0;
margin: auto;
width: 700px; //宽度
height: 300px; //高度
background-position: center;
background-repeat:no-repeat;
background-position-x:center;
background-position-y:center;
background: rgba(51, 51, 51, 0) url(../custom_media/azsj223x300.png) center center no-repeat; //二维码
PS:路径中的net theme是自己重新生成的主题,根据自己的环境设置.
PS:制作二维码
通过https://cli.im制作二维码

No Comments