Skip to content
DataMiner DoJo

More results...

Generic selectors
Exact matches only
Search in title
Search in content
Post Type Selectors
Search in posts
Search in pages
Search in posts
Search in pages
Log in
Menu
  • Blog
  • Questions
  • Learning
    • E-learning Courses
    • Open Classroom Training
    • Certification
      • DataMiner Fundamentals
      • DataMiner Configurator
      • DataMiner Automation
      • Scripts & Connectors Developer: HTTP Basics
      • Scripts & Connectors Developer: SNMP Basics
      • Visual Overview – Level 1
      • Verify a certificate
    • Tutorials
    • Video Library
    • Books We Like
    • >> Go to DataMiner Docs
  • Expert Center
    • Solutions & Use Cases
      • Solutions
      • Use Case Library
    • Markets & Industries
      • Media production
      • Government & defense
      • Content distribution
      • Service providers
      • Partners
      • OSS/BSS
    • DataMiner Insights
      • Security
      • Integration Studio
      • System Architecture
      • DataMiner Releases & Updates
      • DataMiner Apps
    • Agile
      • Agile Webspace
      • Everything Agile
        • The Agile Manifesto
        • Best Practices
        • Retro Recipes
      • Methodologies
        • The Scrum Framework
        • Kanban
        • Extreme Programming
      • Roles
        • The Product Owner
        • The Agile Coach
        • The Quality & UX Coach (QX)
    • DataMiner DevOps Professional Program
  • Downloads
  • More
    • Feature Suggestions
    • Climb the leaderboard!
    • Swag Shop
    • Contact
      • General Inquiries
      • DataMiner DevOps Support
      • Commercial Requests
    • Global Feedback Survey
  • PARTNERS
    • All Partners
    • Technology Partners
    • Strategic Partner Program
    • Deal Registration
  • >> Go to dataminer.services

Invoking Ping, TraceRoute and SSH from Visual Overview

Solved1.94K views5th September 2023Visio Visual Overview
2
Bing Herng Chong [SLC] [DevOps Advocate]1.06K 4th September 2023 2 Comments

Hi, a user of DataMiner 9.6 has the following setup currently deployed in production. Operators are accessing DataMiner using IE through Citrix as per the diagram below:

The user has a Visual Overview for CMTS with the following buttons:

'PING' shape
Shape Data:
Link = C:\Windows\System32\cmd.exe|/K ping <ElementIP> -t|Perform ping to CMTS
Element = [this element]

'TRACERT' shape

Shape Data:
Link = C:\Windows\System32\cmd.exe|/K tracert <ElementIP>|Trace route to CMTS
Element = [this element]

'SSH' shape

Shape Data:
Link = C:\software\putty\putty.exe|-ssh @<ElementIP>|SSH session to CMTS
Element = [this element]

When the user clicks on the buttons:

'PING' shape: Command prompt is launched from the DMA server and the user is able to see the command prompt window appear. The 'ping <ip_adddr>' command is auto-executed and the user is able to see the result of the 'ping' command.

'TRACERT' shape: Command prompt is launched from the DMA server and the user is able to see the command prompt window appear. The 'tracert <ip_adddr>' command is auto-executed and the user is able to see the result of the 'tracert' command.

'SSH' shape: Putty is launched from the DMA server and autoconnects to the CMTS device. The user is able to see the Putty terminal window appear. The user enters username/password and is able to interact with the CMTS via CLI through the launched Putty window.

User is currently undergoing an upgrade to DataMiner 10.3. In place of IE launching .xbap GUI, a transition to Cube is taking place. The user is validating whether the above use cases are still functioning as expected and noticed that cmd.exe and putty.exe are now executed from the Citrix server instead. This does not work as Citrix server does not have access to CMTS devices.

Can some advice be provided on how we can achieve the same use case described above that is working on 9.6 on 10.3?

Bing Herng Chong [SLC] [DevOps Advocate] Selected answer as best 5th September 2023
Sebastiaan Dumoulein [SLC] [DevOps Enabler] commented 4th September 2023

Hi Bing, to my knowledge the behavior of the ‘Link’ shape data has remained unchanged. The programs are always launched from the client machine. Can you verify those programs are available?

Bing Herng Chong [SLC] [DevOps Advocate] commented 5th September 2023

Thank Sebastiaan for your inputs.

Update: the query above is incorrect. The buttons should execute command from the Citrix server where the application (IE + .xbap or Cube client) resides.

1 Answer

  • Active
  • Voted
  • Newest
  • Oldest
3
Jeeva Suria Rajah [SLC] [DevOps Advocate]1.60K Posted 4th September 2023 0 Comments

Hi Bing,

The quickest method I can think of is to run all the Command Prompt commands directly from C#.

This is a simple Ping Test command that I can execute from the Automation Script, and the result is printed in Information Event.

string hostNameOrAddress = "google.com"; // The host you want to ping
string localHostName = Dns.GetHostName(); // Get the local computer's name

Ping pingSender = new Ping();
PingReply reply = pingSender.Send(hostNameOrAddress);

if (reply.Status == IPStatus.Success)
{
engine.GenerateInformation($"Ping from {localHostName} to {hostNameOrAddress} was successful.");
engine.GenerateInformation($"Round-Trip Time: {reply.RoundtripTime}ms");
}
else
{
engine.GenerateInformation($"Ping from {localHostName} to {hostNameOrAddress} failed. Status: {reply.Status}");
}

This script can then be linked with Visio Shape Data, where it can be triggered when a user clicks.

Bing Herng Chong [SLC] [DevOps Advocate] Selected answer as best 5th September 2023
Please login to be able to comment or post an answer.

My DevOps rank

DevOps Members get more insights on their profile page.

My user earnings

0 Dojo credits

Spend your credits in our swag shop.

0 Reputation points

Boost your reputation, climb the leaderboard.

Promo banner DataMiner DevOps Professiona Program
DataMiner Integration Studio (DIS)
Empower Katas

Recent questions

Alarm Dashboard PDF/CSV Export 0 Answers | 0 Votes
Is the Microsoft SharePoint Connector Still Usable 0 Answers | 0 Votes
Is the Microsoft SharePoint Connector Still Usable 0 Answers | 0 Votes

Question Tags

adl2099 (115) alarm (62) Alarm Console (82) alarms (100) alarm template (83) Automation (223) automation scipt (111) Automation script (167) backup (71) Cassandra (180) Connector (108) Correlation (68) Cube (150) Dashboard (194) Dashboards (188) database (83) DataMiner Cube (57) DIS (81) DMS (71) DOM (139) driver (65) DVE (55) Elastic (83) Elasticsearch (115) elements (80) Failover (104) GQI (159) HTTP (76) IDP (74) LCA (151) low code app (166) low code apps (93) lowcodeapps (75) MySQL (53) protocol (203) QAction (83) security (88) services (51) SNMP (86) SRM (337) table (54) trending (87) upgrade (62) Visio (539) Visual Overview (345)
Privacy Policy • Terms & Conditions • Contact

© 2025 Skyline Communications. All rights reserved.

DOJO Q&A widget

Can't find what you need?

? Explore the Q&A DataMiner Docs

[ Placeholder content for popup link ] WordPress Download Manager - Best Download Management Plugin