یادداشت های شخصی 🕊️

راه در جهان یکیست و آن راه راستی است، KEEP IT SIMPLE ذهن های آرام موفق‌تر اند

یادداشت های شخصی 🕊️

راه در جهان یکیست و آن راه راستی است، KEEP IT SIMPLE ذهن های آرام موفق‌تر اند

۱۳ مطلب با کلمه‌ی کلیدی «شبکه» ثبت شده است

C:\WINDOWS\system32>nslookup ghbi.ir 94.232.174.194
Server:  dns.shecan.ir
Address:  94.232.174.194

Non-authoritative answer:
Name:    ghbi.ir
Address:  185.30.4.12

 

ping -a 192.168.1.1

app.maral.com

 


-----------------------------

nslookup samane-novin.ir irns15.serverpars.com

نمونه مشابه بصورت زیر است یعنی این دامنه با آن دی ان اس چگونه لود می شود؟

 

موافقین ۰ مخالفین ۰ ۰۱ فروردين ۰۰ ، ۱۵:۵۲

https://stackoverflow.com/questions/273159/how-to-determine-if-a-port-is-open-on-a-windows-server


https://stackoverflow.com/questions/273159/how-to-determine-if-a-port-is-open-on-a-windows-server

Assuming that it's a TCP (rather than UDP) port that you're trying to use:

On the server itself, use netstat -an to check to see which ports are listening

165

Just wanted to add that on Windows you can use

netstat -na | find "your_port"
to narrow down the results. You can also filter for LISTENING, ESTABLISHED, TCP and such. Mind it's case sensitive though.

69

If you're checking from the outside, not from the server itself, and you don't want to bother installing telnet (as it doesn't come with the last versions of Windows) or any other software, then you have native PowerShell:

Test-NetConnection -Port 800 -ComputerName 192.168.0.1 -InformationLevel Detailed

42

On a Windows machine you can use PortQry from Microsoft to check whether an application is already listening on a specific port using the following command:

portqry -n 11.22.33.44 -p tcp -e 80

38

I did like that:

netstat -an | find "8080"
from telnet

telnet 192.168.100.132 8080
And just make sure that firewall is off on that machine.

9

Use this if you want to see all the used and listening ports on Windows server:

netstat -an |find /i "listening"
See all open, listening, established ports:

netstat -a
 

موافقین ۰ مخالفین ۰ ۰۱ فروردين ۰۰ ، ۱۵:۵۱

در صورت قطعی و مشکل در شبکه:

  • اگر پینگ منظم بود و مشکل کندی سرعت و متقاوت بودن آپلود و دانلود داشتیم مشکل در اتصالات کابلی است و با تستر باید پیدا کنیم به کجا وصل است و تست کنیم.
  • اگر پینگ نامنظم بود و مشکلات گوناگون داشتیم مشکل در سوئیچ شبکه است و ممکن است سوخته باشد.
  • اگر دستگاه آی پی نمی گیرد مشکل می تواند هم در سوئیچ و هم در اتصالات کابلی باشد.
  • اگر آپلود ضعیف بود مشکل در کابل است

 

مجموعه دستورات موردنیاز می تواند ping ipconfig /? tracert و  باشد.

 

از دستورات زیر نیز استفاده شود

netstat

arp

telnet

pathping

 

 

 

آیا پینگ می شود؟‌  به یاهو،‌ به دی ان اس سرور اصلی به گیت وی به شبکه داخلی به دیگر کامپیوترها

آیا کابل شبکه وصل است؟

آیا سوئیچ درست کار می کند؟

آیا کابل بک بون به سوئیچ وصل است؟

آیا همه قطع هستند یا فقط یک نفر؟

آیا کریو درست عمل می کند؟

آیا سرور روشن است؟

آیا آنتن و لینک اصلی برقرار است؟

 

DC TEST

ping 192.168.0.220

ping 192.168.0.221
 

Internal Other Server Network TEST

ping 192.168.0.3 , 4 , 236, ....

 

Server TEST

ping 192.168.0.200

ping 192.168.0.201
 

Internet TEST

ping yahoo.com

 

tarcert

pathping

netstat

 

در نت استت اگر لوکال پورت ول نان باشد یعنی دیگران به ما وصل هستندد در غیر اینصورت ما شروع کننده بودیم

arp

telnet

 

موافقین ۰ مخالفین ۰ ۰۱ فروردين ۰۰ ، ۱۵:۴۹