17小时玩转AS3,时间没白费!

博主研究AS3系统,分享安装配置经验。涵盖MYSQL、PHP、APACHE2等软件安装,SENDMAIL的SMTP认证配置,ADSL拨号、NAT、SQUID、DHCP、SAMBA、PROFTPD设置,还给出“反弹式”防火墙脚本保障网络安全。
这两天一直在研究AS3,初次使用,由RH73跨越到AS3,确实有很多东西不适应,配置方法也不太一样,下面就我在安装配置时出现的一些问题在这里说明一下

我的系统挂了MYSQL、PHP、APACHE2,做了SQUID和NAT、SAMBA、DHCP、SENDMAIL+SMTP认证、PROFTPD

1、安装MYSQL4.0.18
下了MYSQL以后,解压缩
[quote:6f57b6b1f4]
./configure --prefix=/usr/local/mysql
make
make install
useradd mysql
chown -R mysql /usr/local/mysql/var
[/quote:6f57b6b1f4]
启动MYSQL,/usr/local/mysql/bin/mysqld_safe --user=mysql

2、安装APACHE 2.0.48
解压缩
[quote:6f57b6b1f4]
./configure
make
make install
[/quote:6f57b6b1f4]

3、安装PHP 4.3.4
解压缩
[quote:6f57b6b1f4]
./configure --with-mysql --with-apxs2=/usr/local/apache2/bin/apxs --enable-versioning --disable-debug --enable-track-vars
make
make install
[/quote:6f57b6b1f4]

修改/usr/local/apache2/conf/httpd.conf
看有没有以下两行
[quote:6f57b6b1f4]
LoadModule      php4_module     modules/libphp4.so
AddType         application/x-httpd-php .php
[/quote:6f57b6b1f4]
默认应该有第一行,第二行要自己添加

增加默认页面index.php
[quote:6f57b6b1f4]
DirectoryIndex index.html index.php index.htm index.html.var
[/quote:6f57b6b1f4]

4、配置SENDMAIL
vi /etc/mail/sendmail.mc

[quote:6f57b6b1f4]
dnl # TRUST_AUTH_MECH(`EXTERNAL DIGEST-MD5 CRAM-MD5 LOGIN PLAIN')dnl
dnl # define(`confAUTH_MECHANISMS', `EXTERNAL GSSAPI DIGEST-MD5 CRAM-MD5 LOGIN PLAIN')dnl
[/quote:6f57b6b1f4]
修改为,以便支持SMTP发信认证
[quote:6f57b6b1f4]
TRUST_AUTH_MECH(`EXTERNAL DIGEST-MD5 CRAM-MD5 LOGIN PLAIN')dnl
define(`confAUTH_MECHANISMS', `EXTERNAL GSSAPI DIGEST-MD5 CRAM-MD5 LOGIN PLAIN')dnl
[/quote:6f57b6b1f4]


[quote:6f57b6b1f4]
DAEMON_OPTIONS(`Port=smtp,127.0.0.1,Name=MTA')dnl
[/quote:6f57b6b1f4]
修改为,支持远程访问
[quote:6f57b6b1f4]
DAEMON_OPTIONS(`Port=smtp,Name=MTA')dnl
[/quote:6f57b6b1f4]


[quote:6f57b6b1f4]
dnl # MASQUERADE_AS(`platinum.3322.org')dnl
[/quote:6f57b6b1f4]
改为
[quote:6f57b6b1f4]
MASQUERADE_AS(`platinum.3322.org')dnl
[/quote:6f57b6b1f4]

m4 /etc/mail/sendmail.mc > /etc/mail/sendmail.cf
vi /etc/mail/sendmail.cf
修改
[quote:6f57b6b1f4]
Cwlocalhost
[/quote:6f57b6b1f4]

[quote:6f57b6b1f4]
Cwlocalhost platinum.3322.org
[/quote:6f57b6b1f4]

vi /etc/mail/access 添加0.0.0.0 RELAY

vi /etc/mail/local-host-names
添加
[quote:6f57b6b1f4]
localhost
platinum.3322.org
[/quote:6f57b6b1f4]

启动服务:
/etc/rc.d/init.d/sendmail start
/etc/rc.d/init.d/saslauthd start
setup,启用ipop3服务
/etc/rc.d/init.d/xinetd restart

测试:
adduser test
passwd test
用OUTLOOK测试

5、做ADSL拨号上网
adsl-setup
一步一步接着下一步
然后修改生成的配置文件/etc/sysconfig/network-scripts/ifcfg-ppp0
将里面的
[quote:6f57b6b1f4]
PPPOE_TIMEOUT=60
[/quote:6f57b6b1f4]
改为
[quote:6f57b6b1f4]
PPPOE_TIMEOUT=0
[/quote:6f57b6b1f4]
这样就不会因为没有数据传输而自动断线了

6、做NAT
vi /etc/sysctl.conf
修改
[quote:6f57b6b1f4]
net.ipv4.ip_forward = 0
[/quote:6f57b6b1f4]

[quote:6f57b6b1f4]
net.ipv4.ip_forward = 1
[/quote:6f57b6b1f4]
这样把默认允许转发打开,不用每次还有修改/proc/net/ipv4/ip_forward了
在防火墙里添加控制,允许NAT出去
[quote:6f57b6b1f4]
/sbin/iptables -t nat -A POSTROUTING -s 192.168.0.0/24 -j MASQUERADE
[/quote:6f57b6b1f4]

7、做SQUID
我沿用的RH73的SQUID配置,但在AS3里却遇到了问题
后来仔细看提示才发现,说找不到一个DNS SERVER,奇怪,我的ADSL拨号能PING通www.163.com啊
后来发现/etc/resvol.conf为空,我添加了一个DNS SERVER就行了
我的SQUID做了1000M容量,保存HTTP的1M大小以下的文件,这里就不细说如何配置SQUID了
另外别忘了在iptables里将80端口指向SQUID的端口,我的是默认的3128

8、DHCP
我仍然沿用RH73的dhcpd.conf,结果提示错误,服务无法启动,后来发现需要加个参数
[quote:6f57b6b1f4]
ddns-update-style ad-hoc;
[/quote:6f57b6b1f4]
我的配置文件如下
[code:1:6f57b6b1f4]
ddns-update-style ad-hoc;
max-lease-time -1;
default-lease-time -1;
option subnet-mask 255.255.255.0;
option broadcast-address 255.255.255.255;
option routers 192.168.0.1;
option domain-name-servers 192.168.0.1,202.106.196.152;
option domain-name "platinum.3322.org";
subnet 192.168.0.0 netmask 255.255.255.0 {
        range 192.168.0.2 192.168.0.100;

        host platinum {
                hardware ethernet 00:0a:e6:a9:64:a2;
                fixed-address 192.168.0.2;
                }

        host bchyi {
                hardware ethernet 00:80:c8:e4:c1:e4;
                fixed-address 192.168.0.3;
                filename "/tftpboot/pxelinux.0";
        }
}
[/code:1:6f57b6b1f4]

9、SAMBA
这个是最头疼的,因为这个困惑了我半天的时间
最开始,我沿用RH73的配置文档,发现网上邻居能看见,却无法访问
我的配置文档如下
[code:1:6f57b6b1f4]
[global]
        client code page = 936
        workgroup = HOME
        server string = Samba Server
        security = USER
        encrypt passwords = Yes
        update encrypted = Yes
        obey pam restrictions = Yes
        pam password change = Yes
        passwd program = /usr/bin/passwd %u
        passwd chat = *New*password* %n/n *Retype*new*password* %n/n *passwd:*all*authentication*tokens*updated*successfully*
        unix password sync = Yes
        log file = /var/log/samba/%m.log
        max log size = 0
        socket options = TCP_NODELAY SO_RCVBUF=8192 SO_SNDBUF=8192
        wins proxy = Yes
        wins support = Yes
        remote announce = 192.168.0.255
        remote browse sync = 192.168.0.255
        create mask = 0777
        directory mask = 0777
        printing = lprng

[数据中心]
        comment = DATACENTER
        path = /share/DATACENTER
        read only = No
[/code:1:6f57b6b1f4]
于是我将security = DOMAIN改成了security = USER
结果发现能出来了,但是进去以后,英文目录名没问题,中文全是乱码(大方框)
在RH73和RH9里百试百灵的,怎么在AS3里不行了?
于是我ssh,直接进入我的硬盘ls了一下,结果傻了,原来RH73看到的都是中文名字,现在变成了???等东西
……
经好好先生提醒,我想起来了,可能是和字符集有关系,于是补装ttfonts-zh_CN库,结果发现少装了好多东西,关联东西太多,无奈,又重新装系统……

现在好了,ls,发现仍然是???,无奈,选择默认字符集为GB2312,ls,没事了!
/etc/rc.d/init.d/smb restart
回到网上邻居,进入,发现仍然事乱码!
看来和字符集没关系,和SAMBA的配置有关系
testparm发现,client code page = 936这句话在AS3里并不好使,提示这句话错误
难道没办法显示中文了???
找了N多资料,在一个老外的论坛了找到了正确配置方法(显示中文的东西竟然在老外论坛里),用这两句话替代:
[color=red:6f57b6b1f4]dos charset=cp936
unix charset=cp936[/color:6f57b6b1f4]
现在SAMBA能用了,正确的配置文档如下
[code:1:6f57b6b1f4]
[global]
        dos charset=cp936
        unix charset=cp936
        workgroup = HOME
        server string = Samba Server
        security = USER
        encrypt passwords = Yes
        update encrypted = Yes
        obey pam restrictions = Yes
        pam password change = Yes
        passwd program = /usr/bin/passwd %u
        passwd chat = *New*password* %n/n *Retype*new*password* %n/n *passwd:*all*authentication*tokens*updated*successfully*
        unix password sync = Yes
        log file = /var/log/samba/%m.log
        max log size = 0
        socket options = TCP_NODELAY SO_RCVBUF=8192 SO_SNDBUF=8192
        wins proxy = Yes
        wins support = Yes
        remote announce = 192.168.0.255
        remote browse sync = 192.168.0.255
        create mask = 0777
        directory mask = 0777
        printing = lprng

[数据中心]
        comment = DATACENTER
        path = /share/DATACENTER
        read only = No
[/code:1:6f57b6b1f4]
[color=red:6f57b6b1f4]注意:cp936是微软的磁盘系统中文标准,而gb2312是中国国家中文标准,二者略有不同,在LINUX中使用cp936能更好地与中文磁盘格式兼容[/color:6f57b6b1f4]

10、PROFTPD
这个对我来说是轻车熟路了,装了个1.2.9(最高版本,目前没漏洞),编译好
直接把配置文档贴出来吧
[code:1:6f57b6b1f4]
# This is a basic ProFTPD configuration file (rename it to
# 'proftpd.conf' for actual use.  It establishes a single server
# and a single anonymous login.  It assumes that you have a user/group
# "nobody" and "ftp" for normal operation and anon.

ServerType                      standalone
DefaultServer                   on
AllowRetrieveRestart            on
AllowOverwrite                  on
AllowStoreRestart               on
ServerIdent                     on "Welcome to PLATINUM's FTP !"
DefaultRoot                     ~
DisplayLogin                    .welcome
DisplayFirstChdir               .message
UseReverseDNS                   off
IdentLookups                    off
SystemLog                       /var/log/ftp.syslog
TransferLog                     /var/log/ftp.transferlog
TransferRate    RETR 20 group   hMovie


# MaxClientsPerUser             10      "已超过最大上限 10 个guest用户,请少后再试!"
# MaxClientsPerHost             4

# Port 21 is the standard FTP port.
Port                            21

# Umask 022 is a good standard umask to prevent new dirs and files
# from being group and world writable.
Umask                           002

# To prevent DoS attacks, set the maximum number of child processes
# to 30.  If you need to allow more than 30 concurrent connections
# at once, simply increase this value.  Note that this ONLY works
# in standalone mode, in inetd mode you should use an inetd server
# that allows you to limit maximum number of processes per service
# (such as xinetd).
MaxInstances                    30

# Set the user and group under which the server will run.
  User                          nobody
  Group                         nobody

# Normally, we want files to be overwriteable.
<Directory />
  AllowOverwrite                on
</Directory>

<Directory /share/DATACENTER/电影>
        <Limit  RNFR DELE WRITE>
                DenyGroup       hMovie
        </Limit>
</Directory>

<Anonymous ~guest>
        User guest
        Group ftp
        AllowOverwrite          on
        AllowRetrieveRestart    on
        AllowStoreRestart       on
        TransferRate    RETR    10
#       MaxClientsPerUser       30      "已超过最大上限 30 个guest用户,请少后再试!"
#       MaxClientsPerHost       4

        <Directory /share/ftp/上传目录>
                Umask   000
                <Limit  RNFR DELE RETR>
                        DenyAll
                </Limit>
        </Directory>
</Anonymous>
[/code:1:6f57b6b1f4]

11、网络安全问题
服务架好了,网络安全不容忽视
这是我的“反弹式”防火墙
[code:1:6f57b6b1f4]
#! /bin/bash
/sbin/modprobe ip_conntrack_ftp
/sbin/modprobe ip_nat_ftp
/sbin/iptables -F -t filter
/sbin/iptables -F -t nat
/sbin/iptables -P INPUT ACCEPT
/sbin/iptables -P OUTPUT ACCEPT
/sbin/iptables -P FORWARD ACCEPT
/sbin/iptables -t nat -P PREROUTING ACCEPT
/sbin/iptables -t nat -P POSTROUTING ACCEPT
/sbin/iptables -t nat -P OUTPUT ACCEPT

# ALLOW ALL in PRIVATE NET
/sbin/iptables -A INPUT -i lo -j ACCEPT
/sbin/iptables -A INPUT -i eth1 -j ACCEPT

# FTP
/sbin/iptables -A INPUT -m limit --limit 100/s --limit-burst 100 -p tcp --dport 21 -j ACCEPT

# SSH & TELNET
/sbin/iptables -A INPUT -p tcp --dport 22 -j ACCEPT

# MAIL
/sbin/iptables -A INPUT -p tcp --dport 25 -j ACCEPT
/sbin/iptables -A INPUT -p tcp --dport 110 -j ACCEPT

# VPN
#/sbin/iptables -A INPUT -p tcp --dport 1723 -j ACCEPT
#/sbin/iptables -A INPUT -p gre -j ACCEPT

# WWW
/sbin/iptables -A INPUT -m limit --limit 100/s --limit-burst 100 -p tcp --dport 80 -j ACCEPT

# MYSQL
# /sbin/iptables -A INPUT -p tcp --dport 3306 -j ACCEPT

# SOCKS5
# /sbin/iptables -A INPUT -p tcp --dport 8039 -j ACCEPT

# ICMP(PING)
/sbin/iptables -A INPUT -p icmp --icmp-type echo-request -j REJECT
/sbin/iptables -A INPUT -p icmp --icmp-type ! echo-request -j ACCEPT

# NAT
/sbin/iptables -t nat -A POSTROUTING -s 192.168.0.0/24 -j MASQUERADE

# DNAT SQL-SERVER & RADMIN to PRIVATE NET
/sbin/iptables -A PREROUTING -t nat -p tcp -s ! 192.168.0.0/24 --dport 4899 -j DNAT --to 192.168.0.2:4899
/sbin/iptables -A PREROUTING -t nat -p tcp -s ! 192.168.0.0/24 --dport 5000 -j DNAT --to 192.168.0.3:4899
iptables -t nat -A PREROUTING -p tcp -m tcp -s 192.168.0.0/24 --dport 80 -j DNAT --to 192.168.0.1:3128

# DENY OTHERS
/sbin/iptables -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT
/sbin/iptables -A INPUT -j MIRROR
[/code:1:6f57b6b1f4]

终于写完了,不容易,这17小时没白费!
<think> 嗯,用户这次的问题很明确:想找华为交换机密文转明文的方法。看来用户是网络设备管理员,可能遇到需要验证配置密码或排查故障的情况。从引用内容看,用户已经查阅过技术文档,知道配置密码时有cipher/simple选项的区别。 用户引用的资料[1][2][3]都显示华为交换机配置密码时,若使用cipher参数存储的是不可逆加密的密文。这点很关键,尤其是引用[4]提到H3C交换机的示例,明确区分了可逆的cipher和不可逆的hash cipher,暗示华为可能采用类似机制。 需要向用户强调两个核心事实:一是设计上就不允许反向解密,这是基本安全原则;二是提供替代方案时要注意实用性。比如display current-configuration虽然能看配置,但密文仍然显示为星号,这个细节必须说明清楚,否则用户实际操作时会困惑。 考虑到用户可能需要验证密码,建议的替代方案要分层级:优先推荐重设密码这种安全操作,其次是运行诊断视图的特殊命令(需权限较高),最后才是配置文件导出这类间接方法。在回复里把"特权模式"写成"diagnose视图"更专业,这是华为的术语。 用户提具体型号,但华为较新版本VRP都移除了direct-command功能,这个变动必须说明,避免用户找到过时资料白费时间。最后补充密码恢复流程的说明很重要&mdash;&mdash;虽然和密文解密无关,但可能是用户遇到这类问题的真实场景。 </think> 根据引用内容和华为设备特性,**华为交换机配置的密文密码无法直接转换为明文**,这是出于安全设计的考虑。以下是关键要点和替代解决方案: --- ### **核心结论** 1. **不可逆加密机制** - 使用`cipher`参数配置的密码(如`set authentication password cipher 123`)会经过**不可逆加密算法**处理,无法通过任何命令反向解密(引用[1][2][3])。 - 华为设计此机制是为防止密码泄露,符合网络安全规范。 2. **配置中的密文显示** - 执行 `display current-configuration` 时,密码会显示为加密后的字符串(如`cipher %$%$...`),**不会还原为明文**(引用[2][3])。 --- ### **替代解决方案** 若需获取明文密码,可通过以下方式重新配置: #### 1. **修改为明文配置** ```bash [Huawei] user-interface console 0 [Huawei-ui-console0] set authentication password simple 新密码 # 用simple参数配置明文 ``` > **注意**:配置后执行 `save`,密码将以明文形式存储在配置文件中(安全性低)。 #### 2. **特权模式查看历史配置(需权限)** - 进入诊断视图获取历史命令记录(需管理员权限): ```bash <Huawei> diagnose # 进入诊断视图 <Huawei-diagnose> display history-command # 显示历史输入命令 ``` > 仅当密码配置操作未被覆盖且设备未重启时可能有效。 #### 3. **配置文件导出分析** - 通过 `display saved-configuration` 导出配置,查找类似片段: ```bash user-interface con 0 authentication-mode password set authentication password cipher %@%#... # 此处为不可解密的密文 ``` > 若配置时使用过 `simple` 参数,此处会直接显示明文密码(引用[3])。 --- ### **重要提醒** - **安全风险**:明文存储密码可能导致设备被非法访问(引用[2][3])。 - **密码恢复**:若忘记密码,需通过**BootROM重置**(物理接触设备),步骤如下: 1. 重启交换机并按 `Ctrl+B` 进入BootROM菜单。 2. 选择 "Clear Console Password" 选项。 3. 重启后使用空密码登录,重新配置新密码。 ---
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值