{"id":90,"date":"2012-01-30T23:52:00","date_gmt":"2012-01-30T23:52:00","guid":{"rendered":"http:\/\/pheonixsolutions.com\/?p=90"},"modified":"2026-06-03T17:08:39","modified_gmt":"2026-06-03T11:38:39","slug":"find-custom-ssh-port-number","status":"publish","type":"post","link":"https:\/\/pheonixsolutions.com\/blog\/find-custom-ssh-port-number\/","title":{"rendered":"Find custom SSH port number"},"content":{"rendered":"<div dir=\"ltr\" style=\"text-align: left;\">\n<h2>Introduction<\/h2>\n<p class=\"isSelectedEnd\">Secure Shell (SSH) is the standard protocol used by system administrators and DevOps engineers to securely access and manage Linux servers remotely. By default, SSH listens on port 22. However, many organizations configure SSH to use a custom port to reduce exposure to automated attacks and enhance security.<\/p>\n<p class=\"isSelectedEnd\">There are situations where administrators need to identify the configured SSH port, such as troubleshooting connection issues, validating server configurations, performing security audits, or onboarding new team members. This guide explains multiple methods to find a custom SSH port number on Linux systems quickly and efficiently.<\/p>\n<h2>Why Use a Custom SSH Port?<\/h2>\n<p class=\"isSelectedEnd\">Although changing the SSH port is not a replacement for proper security controls, it provides an additional layer of protection by reducing noise from automated bots scanning port 22.<\/p>\n<p class=\"isSelectedEnd\">Common reasons for using a custom SSH port include:<\/p>\n<ul data-spread=\"false\">\n<li>Reducing automated brute-force attacks<\/li>\n<li>Improving security through obscurity<\/li>\n<li>Meeting organizational security requirements<\/li>\n<li>Separating administrative access from standard services<\/li>\n<\/ul>\n<h2>Prerequisites<\/h2>\n<p class=\"isSelectedEnd\">Before proceeding, ensure you have:<\/p>\n<ul data-spread=\"false\">\n<li>Access to the Linux server<\/li>\n<li>Sudo or root privileges (recommended)<\/li>\n<li>Basic knowledge of Linux command-line operations<\/li>\n<\/ul>\n<h2>Method 1: Check the SSH Configuration File<\/h2>\n<p class=\"isSelectedEnd\">The most reliable method is to inspect the SSH daemon configuration file.<\/p>\n<h3>View the SSH Port Configuration<\/h3>\n<pre dir=\"ltr\"><code dir=\"ltr\">sudo grep -i \"^Port\" \/etc\/ssh\/sshd_config<\/code><\/pre>\n<p class=\"isSelectedEnd\">Example output:<\/p>\n<pre dir=\"ltr\"><code dir=\"ltr\">Port 2222<\/code><\/pre>\n<p class=\"isSelectedEnd\">This indicates that SSH is configured to listen on port <strong>2222<\/strong>.<\/p>\n<h3>Check Additional Configuration Files<\/h3>\n<p class=\"isSelectedEnd\">Some Linux distributions include additional SSH configuration files.<\/p>\n<pre dir=\"ltr\"><code dir=\"ltr\">sudo grep -Ri \"^Port\" \/etc\/ssh\/<\/code><\/pre>\n<p class=\"isSelectedEnd\">Example output:<\/p>\n<pre dir=\"ltr\"><code dir=\"ltr\">\/etc\/ssh\/sshd_config:Port 2222\n\/etc\/ssh\/sshd_config.d\/custom.conf:Port 2200<\/code><\/pre>\n<p class=\"isSelectedEnd\">Review all matching entries to determine the active configuration.<\/p>\n<h2>Method 2: Verify Listening SSH Ports<\/h2>\n<p class=\"isSelectedEnd\">You can identify the active SSH port by checking which ports the SSH service is listening on.<\/p>\n<h3>Using ss Command<\/h3>\n<pre dir=\"ltr\"><code dir=\"ltr\">sudo ss -tulpn | grep ssh<\/code><\/pre>\n<p class=\"isSelectedEnd\">Example output:<\/p>\n<pre dir=\"ltr\"><code dir=\"ltr\">tcp   LISTEN  0  128  0.0.0.0:2222  0.0.0.0:*  users:((\"sshd\",pid=1001))<\/code><\/pre>\n<p class=\"isSelectedEnd\">The server is listening on port <strong>2222<\/strong>.<\/p>\n<h3>Using netstat<\/h3>\n<p class=\"isSelectedEnd\">If available:<\/p>\n<pre dir=\"ltr\"><code dir=\"ltr\">sudo netstat -tulpn | grep ssh<\/code><\/pre>\n<p class=\"isSelectedEnd\">Example output:<\/p>\n<pre dir=\"ltr\"><code dir=\"ltr\">tcp  0  0 0.0.0.0:2222  0.0.0.0:*  LISTEN  1001\/sshd<\/code><\/pre>\n<h2>Method 3: Use lsof to Find SSH Listening Ports<\/h2>\n<p class=\"isSelectedEnd\">The <code dir=\"ltr\">lsof<\/code> utility can display open network sockets.<\/p>\n<pre dir=\"ltr\"><code dir=\"ltr\">sudo lsof -i -P -n | grep sshd<\/code><\/pre>\n<p class=\"isSelectedEnd\">Example output:<\/p>\n<pre dir=\"ltr\"><code dir=\"ltr\">sshd  1001 root  3u  IPv4  12345  TCP *:2222 (LISTEN)<\/code><\/pre>\n<p class=\"isSelectedEnd\">This confirms SSH is listening on port <strong>2222<\/strong>.<\/p>\n<h2>Method 4: Check Running SSHD Process<\/h2>\n<p class=\"isSelectedEnd\">View the SSH daemon process details:<\/p>\n<pre dir=\"ltr\"><code dir=\"ltr\">ps -ef | grep sshd<\/code><\/pre>\n<p class=\"isSelectedEnd\">Although this may not directly display the port number, it helps verify that the SSH daemon is running correctly.<\/p>\n<h2>Method 5: Verify with Systemctl<\/h2>\n<p class=\"isSelectedEnd\">Check the status of the SSH service.<\/p>\n<p class=\"isSelectedEnd\">For Ubuntu\/Debian:<\/p>\n<pre dir=\"ltr\"><code dir=\"ltr\">sudo systemctl status ssh<\/code><\/pre>\n<p class=\"isSelectedEnd\">For RHEL\/CentOS\/Rocky Linux:<\/p>\n<pre dir=\"ltr\"><code dir=\"ltr\">sudo systemctl status sshd<\/code><\/pre>\n<p class=\"isSelectedEnd\">You can also inspect logs for startup information:<\/p>\n<pre dir=\"ltr\"><code dir=\"ltr\">sudo journalctl -u sshd<\/code><\/pre>\n<p class=\"isSelectedEnd\">or<\/p>\n<pre dir=\"ltr\"><code dir=\"ltr\">sudo journalctl -u ssh<\/code><\/pre>\n<h2>Method 6: Test SSH Connectivity Locally<\/h2>\n<p class=\"isSelectedEnd\">If you suspect a custom port, test connectivity using:<\/p>\n<pre dir=\"ltr\"><code dir=\"ltr\">ssh -p 2222 localhost<\/code><\/pre>\n<p class=\"isSelectedEnd\">Replace <strong>2222<\/strong> with the suspected port.<\/p>\n<p class=\"isSelectedEnd\">Successful authentication confirms the SSH service is listening on that port.<\/p>\n<h2>Method 7: Find SSH Port Remotely<\/h2>\n<p class=\"isSelectedEnd\">If you do not have direct server access, you can scan for open ports.<\/p>\n<h3>Using Nmap<\/h3>\n<pre dir=\"ltr\"><code dir=\"ltr\">nmap -sV &lt;server-ip&gt;<\/code><\/pre>\n<p class=\"isSelectedEnd\">Example output:<\/p>\n<pre dir=\"ltr\"><code dir=\"ltr\">PORT     STATE SERVICE VERSION\n2222\/tcp open  ssh     OpenSSH 9.0<\/code><\/pre>\n<p class=\"isSelectedEnd\">For a focused scan:<\/p>\n<pre dir=\"ltr\"><code dir=\"ltr\">nmap -p 1-65535 &lt;server-ip&gt; | grep ssh<\/code><\/pre>\n<p class=\"isSelectedEnd\">This identifies the SSH service running on a non-standard port.<\/p>\n<h2>Troubleshooting Tips<\/h2>\n<h3>SSH Service Not Running<\/h3>\n<p class=\"isSelectedEnd\">Verify service status:<\/p>\n<pre dir=\"ltr\"><code dir=\"ltr\">sudo systemctl status sshd<\/code><\/pre>\n<p class=\"isSelectedEnd\">Start the service if needed:<\/p>\n<pre dir=\"ltr\"><code dir=\"ltr\">sudo systemctl start sshd<\/code><\/pre>\n<h3>Firewall Blocking the Port<\/h3>\n<p class=\"isSelectedEnd\">Check firewall rules:<\/p>\n<p class=\"isSelectedEnd\">For firewalld:<\/p>\n<pre dir=\"ltr\"><code dir=\"ltr\">sudo firewall-cmd --list-all<\/code><\/pre>\n<p class=\"isSelectedEnd\">For UFW:<\/p>\n<pre dir=\"ltr\"><code dir=\"ltr\">sudo ufw status<\/code><\/pre>\n<p class=\"isSelectedEnd\">Ensure the custom SSH port is allowed.<\/p>\n<h3>SELinux Restrictions<\/h3>\n<p class=\"isSelectedEnd\">On SELinux-enabled systems:<\/p>\n<pre dir=\"ltr\"><code dir=\"ltr\">sudo semanage port -l | grep ssh<\/code><\/pre>\n<p class=\"isSelectedEnd\">Verify the configured port is permitted for SSH traffic.<\/p>\n<h2>Security Best Practices<\/h2>\n<p class=\"isSelectedEnd\">When using a custom SSH port:<\/p>\n<ul data-spread=\"false\">\n<li>Disable password authentication where possible<\/li>\n<li>Use SSH key-based authentication<\/li>\n<li>Restrict root login<\/li>\n<li>Enable multi-factor authentication<\/li>\n<li>Configure firewall rules to limit SSH access<\/li>\n<li>Monitor authentication logs regularly<\/li>\n<li>Keep OpenSSH packages updated<\/li>\n<\/ul>\n<p class=\"isSelectedEnd\">Example SSH hardening settings:<\/p>\n<pre dir=\"ltr\"><code dir=\"ltr\">PermitRootLogin no\nPasswordAuthentication no\nPubkeyAuthentication yes<\/code><\/pre>\n<h2>Conclusion<\/h2>\n<p class=\"isSelectedEnd\">Identifying a custom SSH port is a common task for Linux administrators, especially when troubleshooting connectivity issues or reviewing server security configurations. The most effective approach is to inspect the SSH configuration file, while tools such as <code dir=\"ltr\">ss<\/code>, <code dir=\"ltr\">netstat<\/code>, <code dir=\"ltr\">lsof<\/code>, and <code dir=\"ltr\">nmap<\/code> provide additional verification. By understanding these methods and following SSH security best practices, administrators can maintain secure and reliable remote access to their Linux servers.<\/p>\n<p>Whether you&#8217;re managing a single server or a large enterprise environment, knowing how to quickly determine the active SSH port is an essential skill that improves operational efficiency and security.<\/p>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>Introduction Secure Shell (SSH) is the standard protocol used by system administrators and DevOps engineers to securely access and manage Linux servers remotely. By default, SSH listens on port 22. However, many organizations configure SSH to use a custom port to reduce exposure to automated attacks and enhance security. There&hellip; <a href=\"https:\/\/pheonixsolutions.com\/blog\/find-custom-ssh-port-number\/\" class=\"more-link read-more\" rel=\"bookmark\">Continue Reading <span class=\"screen-reader-text\">Find custom SSH port number<\/span><i class=\"fa fa-arrow-right\"><\/i><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_post_was_ever_published":false},"categories":[1],"tags":[],"class_list":{"0":"post-90","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"hentry","6":"category-uncategorized","7":"h-entry","9":"h-as-article"},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.7 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Pheonix Solutions - We Empower Your Business Growth<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/pheonixsolutions.com\/blog\/find-custom-ssh-port-number\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Pheonix Solutions - We Empower Your Business Growth\" \/>\n<meta property=\"og:description\" content=\"Introduction Secure Shell (SSH) is the standard protocol used by system administrators and DevOps engineers to securely access and manage Linux servers remotely. By default, SSH listens on port 22. However, many organizations configure SSH to use a custom port to reduce exposure to automated attacks and enhance security. There&hellip; Continue Reading Find custom SSH port number\" \/>\n<meta property=\"og:url\" content=\"https:\/\/pheonixsolutions.com\/blog\/find-custom-ssh-port-number\/\" \/>\n<meta property=\"og:site_name\" content=\"PHEONIXSOLUTIONS\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/\" \/>\n<meta property=\"article:published_time\" content=\"2012-01-30T23:52:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-06-03T11:38:39+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/09\/PX2.png\" \/>\n\t<meta property=\"og:image:width\" content=\"3837\" \/>\n\t<meta property=\"og:image:height\" content=\"2540\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@pheonixsolution\" \/>\n<meta name=\"twitter:site\" content=\"@pheonixsolution\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/find-custom-ssh-port-number\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/find-custom-ssh-port-number\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/0ffa33d73c869faec2d50e79c24e3503\"},\"headline\":\"Find custom SSH port number\",\"datePublished\":\"2012-01-30T23:52:00+00:00\",\"dateModified\":\"2026-06-03T11:38:39+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/find-custom-ssh-port-number\\\/\"},\"wordCount\":612,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/find-custom-ssh-port-number\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/find-custom-ssh-port-number\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/find-custom-ssh-port-number\\\/\",\"name\":\"Pheonix Solutions - We Empower Your Business Growth\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\"},\"datePublished\":\"2012-01-30T23:52:00+00:00\",\"dateModified\":\"2026-06-03T11:38:39+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/find-custom-ssh-port-number\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/find-custom-ssh-port-number\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/find-custom-ssh-port-number\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Find custom SSH port number\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\",\"name\":\"Pheonix Solutions\",\"description\":\"We Empower Your Business Growth\",\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\",\"name\":\"PheonixSolutions\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/12\\\/logo.png\",\"contentUrl\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/12\\\/logo.png\",\"width\":454,\"height\":300,\"caption\":\"PheonixSolutions\"},\"image\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/PheonixSolutions-209942982759387\\\/\",\"https:\\\/\\\/x.com\\\/pheonixsolution\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/0ffa33d73c869faec2d50e79c24e3503\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g\",\"caption\":\"admin\"},\"sameAs\":[\"http:\\\/\\\/pheonixsolutions.com\\\/blog\"],\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/author\\\/admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Pheonix Solutions - We Empower Your Business Growth","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/pheonixsolutions.com\/blog\/find-custom-ssh-port-number\/","og_locale":"en_US","og_type":"article","og_title":"Pheonix Solutions - We Empower Your Business Growth","og_description":"Introduction Secure Shell (SSH) is the standard protocol used by system administrators and DevOps engineers to securely access and manage Linux servers remotely. By default, SSH listens on port 22. However, many organizations configure SSH to use a custom port to reduce exposure to automated attacks and enhance security. There&hellip; Continue Reading Find custom SSH port number","og_url":"https:\/\/pheonixsolutions.com\/blog\/find-custom-ssh-port-number\/","og_site_name":"PHEONIXSOLUTIONS","article_publisher":"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","article_published_time":"2012-01-30T23:52:00+00:00","article_modified_time":"2026-06-03T11:38:39+00:00","og_image":[{"width":3837,"height":2540,"url":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/09\/PX2.png","type":"image\/png"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@pheonixsolution","twitter_site":"@pheonixsolution","twitter_misc":{"Written by":"admin","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/pheonixsolutions.com\/blog\/find-custom-ssh-port-number\/#article","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/find-custom-ssh-port-number\/"},"author":{"name":"admin","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/0ffa33d73c869faec2d50e79c24e3503"},"headline":"Find custom SSH port number","datePublished":"2012-01-30T23:52:00+00:00","dateModified":"2026-06-03T11:38:39+00:00","mainEntityOfPage":{"@id":"https:\/\/pheonixsolutions.com\/blog\/find-custom-ssh-port-number\/"},"wordCount":612,"commentCount":0,"publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/pheonixsolutions.com\/blog\/find-custom-ssh-port-number\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/pheonixsolutions.com\/blog\/find-custom-ssh-port-number\/","url":"https:\/\/pheonixsolutions.com\/blog\/find-custom-ssh-port-number\/","name":"Pheonix Solutions - We Empower Your Business Growth","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#website"},"datePublished":"2012-01-30T23:52:00+00:00","dateModified":"2026-06-03T11:38:39+00:00","breadcrumb":{"@id":"https:\/\/pheonixsolutions.com\/blog\/find-custom-ssh-port-number\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/pheonixsolutions.com\/blog\/find-custom-ssh-port-number\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/pheonixsolutions.com\/blog\/find-custom-ssh-port-number\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/pheonixsolutions.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Find custom SSH port number"}]},{"@type":"WebSite","@id":"https:\/\/pheonixsolutions.com\/blog\/#website","url":"https:\/\/pheonixsolutions.com\/blog\/","name":"Pheonix Solutions","description":"We Empower Your Business Growth","publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/pheonixsolutions.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/pheonixsolutions.com\/blog\/#organization","name":"PheonixSolutions","url":"https:\/\/pheonixsolutions.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/12\/logo.png","contentUrl":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/12\/logo.png","width":454,"height":300,"caption":"PheonixSolutions"},"image":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","https:\/\/x.com\/pheonixsolution"]},{"@type":"Person","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/0ffa33d73c869faec2d50e79c24e3503","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g","caption":"admin"},"sameAs":["http:\/\/pheonixsolutions.com\/blog"],"url":"https:\/\/pheonixsolutions.com\/blog\/author\/admin\/"}]}},"jetpack_featured_media_url":"","jetpack_shortlink":"https:\/\/wp.me\/p7F4uM-1s","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/90","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/comments?post=90"}],"version-history":[{"count":1,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/90\/revisions"}],"predecessor-version":[{"id":10298,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/90\/revisions\/10298"}],"wp:attachment":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/media?parent=90"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/categories?post=90"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/tags?post=90"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}