diff --git a/jccm/src/Frontend/Layout/InventoryTreeMenuLocal.js b/jccm/src/Frontend/Layout/InventoryTreeMenuLocal.js index 2af8135..fd00725 100644 --- a/jccm/src/Frontend/Layout/InventoryTreeMenuLocal.js +++ b/jccm/src/Frontend/Layout/InventoryTreeMenuLocal.js @@ -976,6 +976,15 @@ const InventoryTreeMenuLocal = () => { > The network OS release might be outdated, but this needs confirmation. + + Please perform a network access test manually using commands such as telnet. + ), }} diff --git a/jccm/src/Services/Device.js b/jccm/src/Services/Device.js index ca904f0..9eb99af 100644 --- a/jccm/src/Services/Device.js +++ b/jccm/src/Services/Device.js @@ -808,7 +808,7 @@ export const getDeviceNetworkCondition = async ( networkCondition.access = false; networkCondition.route = true; } else if (rpcReply.includes('curl: not found')) { - networkCondition.message = `The network access test is unavailable because the 'curl' command is missing.`; + networkCondition.message = `The network access test to ${termServer}:${termPort} is unavailable because the 'curl' command is missing.`; networkCondition.dns = true; networkCondition.access = true; networkCondition.route = true;