diff options
author | John Wilkins <john.wilkins@inktank.com> | 2013-02-25 16:12:50 -0800 |
---|---|---|
committer | John Wilkins <john.wilkins@inktank.com> | 2013-02-25 16:12:50 -0800 |
commit | 5e5530be196e25b48b9db1a00ce1b295c09bc6a2 (patch) | |
tree | 362d4627976dbee00887aa3ec2f7fd58344d6924 | |
parent | 9ab0fd758a46e4236d2514bb72bc2d3d76bbbf1f (diff) | |
download | ceph-5e5530be196e25b48b9db1a00ce1b295c09bc6a2.tar.gz |
doc: Added content to remove REJECT rules from iptables.
Signed-off-by: John Wilkins <john.wilkins@inktank.com>
-rw-r--r-- | doc/rados/operations/troubleshooting-mon.rst | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/doc/rados/operations/troubleshooting-mon.rst b/doc/rados/operations/troubleshooting-mon.rst index e2b834acffb..3c3809087ae 100644 --- a/doc/rados/operations/troubleshooting-mon.rst +++ b/doc/rados/operations/troubleshooting-mon.rst @@ -28,4 +28,25 @@ For example:: If there are not enough monitors to form a quorum, the ``ceph`` command will block trying to reach the cluster. In this situation, you need to get enough ``ceph-mon`` daemons running to form a quorum -before doing anything else with the cluster.
\ No newline at end of file +before doing anything else with the cluster. + + +Client Can't Connect/Mount +========================== + +Check your IP tables. Some OS install utilities add a ``REJECT`` rule to +``iptables``. The rule rejects all clients trying to connect to the host except +for ``ssh``. If your monitor host's IP tables have such a ``REJECT`` rule in +place, clients connecting from a separate node will fail to mount with a timeout +error. You need to address ``iptables`` rules that reject clients trying to +connect to Ceph daemons. For example, you would need to address rules that look +like this appropriately:: + + REJECT all -- anywhere anywhere reject-with icmp-host-prohibited + +You may also need to add rules to IP tables on your Ceph hosts to ensure +that clients can access the ports associated with your Ceph monitors (i.e., port +6789 by default) and Ceph OSDs (i.e., 6800 et. seq. by default). For example:: + + iptables -A INPUT -m multiport -p tcp -s {ip-address}/{netmask} --dports 6789,6800:6810 -j ACCEPT + |