回答:
Linux Standard Baseの一部であるCUPSが有効になっています。サービスを停止するには:
sudo /etc/init.d/cupsys stop
起動から無効にするには:
update-rc.d -f cupsys remove
update-rc.d cupsys stop 20 2 3 4 5 .
このプリントサーバーを停止する別の方法は、ターミナルシェルを開いて次のようにctrl + alt + t
入力することです。sudo service cups stop
これによりサーバーが停止し、ポートが閉じますが、再起動時に再起動します。この方法でサービスを再起動または開始することもできます。単に置換するrestart
か、コマンドのstart
どこにstop
あるかです。:D
無効にしないでください。これがプリンタです。
再度有効にするには、ファイアウォールにポートTCP 631を追加します。631
ファイアウォールを入力するだけです。
Ubuntuフォーラムの詳細:
ありがとうございました !私は疑いを与えただけでFacebookが私を切断したので、ポート631 / tcpをファイアウォールから削除しました。これが私のプリンターでした!!! したがって、ファイアウォール内にALLOW IN TCP 631を再度追加するだけです。
Ubuntu 9.04のポリシーでは、「開いているポートはありません」。
https://wiki.ubuntu.com/Security/Features/Historical
https://wiki.ubuntu.com/Security/Features/Historical#ports
これのテストは
netstat -an --inet | grep LISTEN | grep -v 127.0.0.1:
、新規インストールで実行できます。
(これはipv4をカバーしています。ipv6には別のコマンドが必要です)。
Ubuntuの新規インストールがアドレス127.0.0.1をリッスンしていることがわかると思います。これは自分のコンピューターからのみアクセスできます。たとえばをスキャンnmap localhost
すると、localhost IPPリスナーが見つかります。ただし、ネットワークインターフェイスのIPアドレスをスキャンしても、リスナーは見つかりません。ネットワークインターフェイスのIPアドレスを見つけるには、を実行できますifconfig
。たとえば、現在のIPアドレスは172.16.1.8です。
$ ifconfig
eth0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
inet 172.16.1.8 netmask 255.255.255.0 broadcast 172.16.1.255
inet6 fd5e:fcf3:b885:10:250:43ff:fe01:c0ab prefixlen 64 scopeid 0x0<global>
inet6 fe80::250:43ff:fe01:c0ab prefixlen 64 scopeid 0x20<link>
ether 00:50:43:01:c0:ab txqueuelen 1000 (Ethernet)
RX packets 15144365 bytes 1999269267 (1.8 GiB)
RX errors 3 dropped 3 overruns 0 frame 0
TX packets 13871393 bytes 725196571 (691.6 MiB)
TX errors 0 dropped 4712 overruns 0 carrier 0 collisions 0
device interrupt 35
lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536
inet 127.0.0.1 netmask 255.0.0.0
inet6 ::1 prefixlen 128 scopeid 0x10<host>
loop txqueuelen 1 (Local Loopback)
RX packets 3626080 bytes 405627539 (386.8 MiB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 3626080 bytes 405627539 (386.8 MiB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
そのサービスの使用を停止したい場合:
"sudo systemctl stop cups.service && sudo systemctl disable cups.service"
systemd
2010年に始まったUbuntu 9.04 の開発は古いです。Ubuntu systemd
はバージョン15.04から完全にサポートしていると思います。