diff --git a/doc/html/poe.shtml b/doc/html/poe.shtml index bc6cee24e1c6c70d99593c746ebed0495b498860..b6053aeb825044f68093b0cb13d3e097c7843479 100644 --- a/doc/html/poe.shtml +++ b/doc/html/poe.shtml @@ -44,6 +44,7 @@ SLURM_NETWORK environment variable. Supported network options include:</p> <ul> <li>Network protocol</li> <ul> + <li><b>ip</b> Internet protocol, version 4</li> <li><b>ipv4</b> Internet protocol, version 4 (default)</li> <li><b>ipv6</b> Internet protocol, version 6</li> <li><b>us</b> User Space protocol, may be combined with ibv4 or ipv6</li> diff --git a/src/plugins/switch/nrt/switch_nrt.c b/src/plugins/switch/nrt/switch_nrt.c index a80e4d27898478a7410b8f79def9ea87b31da219..c717f99ce998e31d9f78738ad58f10eb7cfce529 100644 --- a/src/plugins/switch/nrt/switch_nrt.c +++ b/src/plugins/switch/nrt/switch_nrt.c @@ -498,6 +498,8 @@ extern int switch_p_build_jobinfo(switch_jobinfo_t *switch_job, char *nodelist, } /* network options */ + } else if (!strcasecmp(token, "ip")) { + ip_v4 = true; } else if (!strcasecmp(token, "ipv4")) { ip_v4 = true; } else if (!strcasecmp(token, "ipv6")) {