Skip to content

Commit

Permalink
Minor improvements (#48)
Browse files Browse the repository at this point in the history
* Add ipV4 hint
* add extra network test

Signed-off-by: Marc Schöchlin <[email protected]>
  • Loading branch information
scoopex committed Sep 16, 2024
1 parent e553b33 commit 923d9ba
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion documentation/System_Deployment.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,10 +125,11 @@ Please just add issues to this project with hints or directly [contact me](https
```
osism apply scs_all_nodes -l 'all:!manager'
```
* Check if the ntp time setup is correct
* Check if the ntp time and the network setup is correct
(checks pre installation conditions like proper time sync and network connectivity)
```
osism apply scs_check_preinstall
osism validate ceph-connectivity
```

## Deploy the infratructure services
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ done < <(sudo vtysh -c "show ip bgp summary"|awk '/^enp/{if ($10 !~/[0-9][0-9]*/

while read node
do
# MTU 9100 - (8 bytes for ICMP headers and 20 bytes for Ethernet header)
# MTU 9100 - (8 bytes for ICMP headers and 20 bytes for IPv4 Ethernet header)
ping -M do -c ${1:-2} -s $((9100 - 28)) $node
if [ "$?" != "0" ];then
failed="PING:$node $failed"
Expand Down

0 comments on commit 923d9ba

Please sign in to comment.