2024-06-03
This commit is contained in:
8
port/dameware-spv-6129.md
Normal file
8
port/dameware-spv-6129.md
Normal file
@ -0,0 +1,8 @@
|
||||
---
|
||||
type: "port"
|
||||
assigned: ""
|
||||
created: "2024-01-06T01:25:36.338Z"
|
||||
updated: "2024-01-06T01:25:36.338Z"
|
||||
---
|
||||
|
||||
# DameWare-SPV-6129
|
8
port/dameware-srp-6129.md
Normal file
8
port/dameware-srp-6129.md
Normal file
@ -0,0 +1,8 @@
|
||||
---
|
||||
type: "port"
|
||||
assigned: ""
|
||||
created: "2024-01-06T01:25:36.250Z"
|
||||
updated: "2024-01-06T01:25:36.250Z"
|
||||
---
|
||||
|
||||
# DameWare-SRP-6129
|
8
port/eaf-management-server-9003.md
Normal file
8
port/eaf-management-server-9003.md
Normal file
@ -0,0 +1,8 @@
|
||||
---
|
||||
type: "port"
|
||||
assigned: ""
|
||||
created: "2024-01-06T01:25:36.338Z"
|
||||
updated: "2024-01-06T01:25:36.338Z"
|
||||
---
|
||||
|
||||
# eaf-management-server-9003
|
16
port/eaf-sp101-8080.md
Normal file
16
port/eaf-sp101-8080.md
Normal file
@ -0,0 +1,16 @@
|
||||
---
|
||||
type: "port"
|
||||
assigned: ""
|
||||
physical-address: "00:10:6F:00:D7:4E"
|
||||
namespace: "MET08DDUPSP1TBI"
|
||||
created: "2024-01-06T01:25:36.251Z"
|
||||
updated: "2024-01-06T01:25:36.251Z"
|
||||
---
|
||||
|
||||
# eaf-sp101-8080
|
||||
|
||||
- [ ] [http](http://eaf-staging.mes.infineon.com:8080/api/Barcode/BIORAD#)
|
||||
|
||||
```c#
|
||||
HttpSelfHostConfiguration config = new("http://localhost:8080/");
|
||||
```
|
13
port/file-bio-rad-stratus-4-445.md
Normal file
13
port/file-bio-rad-stratus-4-445.md
Normal file
@ -0,0 +1,13 @@
|
||||
---
|
||||
type: "port"
|
||||
assigned: ""
|
||||
physical-address: "1C:6F:65:C3:51:DB"
|
||||
ip: "10.95.154.10"
|
||||
namespace: "MET08THFTIRSTRATUS"
|
||||
created: "2024-01-06T01:25:36.338Z"
|
||||
updated: "2024-01-06T01:25:36.338Z"
|
||||
---
|
||||
|
||||
# file-bio-rad-stratus-4-445
|
||||
|
||||
- [ ] [2003](../fileshare/2003.md)
|
13
port/file-bio-rad-stratus-5-445.md
Normal file
13
port/file-bio-rad-stratus-5-445.md
Normal file
@ -0,0 +1,13 @@
|
||||
---
|
||||
type: "port"
|
||||
assigned: ""
|
||||
physical-address: "00:30:48:43:DE:97"
|
||||
ip: "10.95.154.11"
|
||||
namespace: "MET08THFTIRSTRATUS"
|
||||
created: "2024-01-06T01:25:36.252Z"
|
||||
updated: "2024-01-06T01:25:36.252Z"
|
||||
---
|
||||
|
||||
# file-bio-rad-stratus-5-445
|
||||
|
||||
- [ ] [2003](../fileshare/2003.md)
|
93
port/file-sp101-139.md
Normal file
93
port/file-sp101-139.md
Normal file
@ -0,0 +1,93 @@
|
||||
---
|
||||
type: "port"
|
||||
assigned: ""
|
||||
physical-address: "00:10:6F:00:D7:4E"
|
||||
namespace: "MET08DDUPSP1TBI"
|
||||
created: "2024-01-06T01:25:36.253Z"
|
||||
updated: "2024-01-06T01:25:36.253Z"
|
||||
---
|
||||
|
||||
# file-sp101-139
|
||||
|
||||
- [ ] [file](\\10.95.154.12\Testdata)
|
||||
|
||||
```bat
|
||||
@ECHO ON
|
||||
|
||||
:start
|
||||
|
||||
xcopy z:\*.txt y:\RawData\SP1
|
||||
xcopy z:\*.prn y:\RawData\SP1
|
||||
del z:\*.txt
|
||||
del z:\*.prn
|
||||
|
||||
ping /n 1 /w 2000 localhost >nul
|
||||
|
||||
goto start
|
||||
```
|
||||
|
||||
```vba
|
||||
Option Explicit
|
||||
|
||||
Const sLocal = "C:\Tmp\SP1"
|
||||
Const sWin2008 = "\\10.95.1.211\Share"
|
||||
Const sSource = "\\10.95.154.12\testdata"
|
||||
|
||||
Dim oFile
|
||||
Dim oFileLog
|
||||
Dim oFiles
|
||||
Dim oFolder
|
||||
Dim oFSO
|
||||
Dim sErrMsg
|
||||
|
||||
Set oFSO = CreateObject("Scripting.FileSystemObject")
|
||||
|
||||
sErrMsg = ""
|
||||
|
||||
On Error Resume Next
|
||||
|
||||
Set oFiles = oFSO.GetFolder(sSource).Files
|
||||
|
||||
If Err.Number <> 0 Then
|
||||
sErrMsg = Err.Description
|
||||
Else
|
||||
For Each oFile In oFiles
|
||||
If LCase(Right(oFile.Name, 4)) = ".txt" OR LCase(Right(oFile.Name, 4)) = ".prn" Then
|
||||
Call oFSO.MoveFile(sSource & "\" & oFile.Name, sLocal & "\" & oFile.Name)
|
||||
If Err.Number <> 0 Then
|
||||
sErrMsg = Err.Description
|
||||
Exit For
|
||||
End If
|
||||
Set oFile = Nothing
|
||||
End If
|
||||
Next
|
||||
End If
|
||||
Set oFiles = Nothing
|
||||
Set oFolder = oFSO.GetFolder(sLocal)
|
||||
For Each oFile In oFolder.Files
|
||||
If LCase(Right(oFile.Name, 4)) = ".txt" OR LCase(Right(oFile.Name, 4)) = ".prn" Then
|
||||
Call oFSO.CopyFile(sLocal & "\" & oFile.Name, sWin2008 & "\" & oFile.Name, True)
|
||||
Call oFSO.DeleteFile(sLocal & "\" & oFile.Name)
|
||||
End If
|
||||
Next
|
||||
If Len(sErrMsg) = 0 Then
|
||||
sErrMsg = "Move OK"
|
||||
Else
|
||||
sErrMsg = "Error moving file: Err.Number = " & Err.Number & " ; Err.Description = " & Err.Description
|
||||
Call MsgBox(sErrMsg)
|
||||
Call MsgBox("Suggestion: Click on the MOCVD drive and make sure it does not prompt for Labman password")
|
||||
End If
|
||||
If Len(sErrMsg) > 0 Then
|
||||
Set oFileLog = oFSO.OpenTextFile("C:\Log_File_Copy\SP1.txt", 8, True)
|
||||
Call oFileLog.WriteLine(CStr(Now) & " " & sErrMsg)
|
||||
Call oFileLog.Close()
|
||||
Set oFileLog = Nothing
|
||||
End If
|
||||
|
||||
Call MsgBox("Exit")
|
||||
|
||||
Set oFile = Nothing
|
||||
Set oFolder = Nothing
|
||||
Set oFSO = Nothing
|
||||
WScript.quit()
|
||||
```
|
12
port/iis-mesa-reporting-services-50200.md
Normal file
12
port/iis-mesa-reporting-services-50200.md
Normal file
@ -0,0 +1,12 @@
|
||||
---
|
||||
type: "port"
|
||||
assigned: ""
|
||||
created: "2024-01-06T01:25:36.338Z"
|
||||
updated: "2024-01-06T01:25:36.338Z"
|
||||
---
|
||||
|
||||
# iis-mesa-reporting-services-50200
|
||||
|
||||
```
|
||||
[x] http://localhost:50200/ProductionReport
|
||||
```
|
8
port/iis-mesa-reporting-services-api-50201.md
Normal file
8
port/iis-mesa-reporting-services-api-50201.md
Normal file
@ -0,0 +1,8 @@
|
||||
---
|
||||
type: "port"
|
||||
assigned: ""
|
||||
created: "2024-01-06T01:25:36.253Z"
|
||||
updated: "2024-01-06T01:25:36.253Z"
|
||||
---
|
||||
|
||||
# iis-mesa-reporting-services-api-50201
|
8
port/iis-mesareportingservices-443.md
Normal file
8
port/iis-mesareportingservices-443.md
Normal file
@ -0,0 +1,8 @@
|
||||
---
|
||||
type: "port"
|
||||
assigned: ""
|
||||
created: "2024-01-06T01:25:36.338Z"
|
||||
updated: "2024-01-06T01:25:36.338Z"
|
||||
---
|
||||
|
||||
# IIS-MesaReportingServices-443
|
8
port/iis-mesareportingservices-50200.md
Normal file
8
port/iis-mesareportingservices-50200.md
Normal file
@ -0,0 +1,8 @@
|
||||
---
|
||||
type: "port"
|
||||
assigned: ""
|
||||
created: "2024-01-06T01:25:36.255Z"
|
||||
updated: "2024-01-06T01:25:36.255Z"
|
||||
---
|
||||
|
||||
# IIS-MesaReportingServices-50200
|
8
port/iis-mesareportingservices-50205.md
Normal file
8
port/iis-mesareportingservices-50205.md
Normal file
@ -0,0 +1,8 @@
|
||||
---
|
||||
type: "port"
|
||||
assigned: ""
|
||||
created: "2024-01-06T01:25:36.255Z"
|
||||
updated: "2024-01-06T01:25:36.255Z"
|
||||
---
|
||||
|
||||
# IIS-MesaReportingServices-50205
|
8
port/iis-mesareportingservices-80.md
Normal file
8
port/iis-mesareportingservices-80.md
Normal file
@ -0,0 +1,8 @@
|
||||
---
|
||||
type: "port"
|
||||
assigned: ""
|
||||
created: "2024-01-06T01:25:36.256Z"
|
||||
updated: "2024-01-06T01:25:36.256Z"
|
||||
---
|
||||
|
||||
# IIS-MesaReportingServices-80
|
8
port/iis-mesareportingservicesapi-50201.md
Normal file
8
port/iis-mesareportingservicesapi-50201.md
Normal file
@ -0,0 +1,8 @@
|
||||
---
|
||||
type: "port"
|
||||
assigned: ""
|
||||
created: "2024-01-06T01:25:36.338Z"
|
||||
updated: "2024-01-06T01:25:36.338Z"
|
||||
---
|
||||
|
||||
# IIS-MesaReportingServicesAPI-50201
|
8
port/iis-metrology-443.md
Normal file
8
port/iis-metrology-443.md
Normal file
@ -0,0 +1,8 @@
|
||||
---
|
||||
type: "port"
|
||||
assigned: ""
|
||||
created: "2024-01-06T01:25:36.259Z"
|
||||
updated: "2024-01-06T01:25:36.259Z"
|
||||
---
|
||||
|
||||
# iis-metrology-443
|
8
port/iis-metrology-80.md
Normal file
8
port/iis-metrology-80.md
Normal file
@ -0,0 +1,8 @@
|
||||
---
|
||||
type: "port"
|
||||
assigned: ""
|
||||
created: "2024-01-06T01:25:36.260Z"
|
||||
updated: "2024-01-06T01:25:36.260Z"
|
||||
---
|
||||
|
||||
# iis-metrology-80
|
8
port/iis-oi-metrology-archive-443.md
Normal file
8
port/iis-oi-metrology-archive-443.md
Normal file
@ -0,0 +1,8 @@
|
||||
---
|
||||
type: "port"
|
||||
assigned: ""
|
||||
created: "2024-01-06T01:25:36.338Z"
|
||||
updated: "2024-01-06T01:25:36.338Z"
|
||||
---
|
||||
|
||||
# iis-oi-metrology-archive-443
|
8
port/iis-oi-metrology-archive-80.md
Normal file
8
port/iis-oi-metrology-archive-80.md
Normal file
@ -0,0 +1,8 @@
|
||||
---
|
||||
type: "port"
|
||||
assigned: ""
|
||||
created: "2024-01-06T01:25:36.260Z"
|
||||
updated: "2024-01-06T01:25:36.260Z"
|
||||
---
|
||||
|
||||
# iis-oi-metrology-archive-80
|
8
port/iis-oi-metrology-viewer-4432.md
Normal file
8
port/iis-oi-metrology-viewer-4432.md
Normal file
@ -0,0 +1,8 @@
|
||||
---
|
||||
type: "port"
|
||||
assigned: ""
|
||||
created: "2024-01-06T01:25:36.264Z"
|
||||
updated: "2024-01-06T01:25:36.264Z"
|
||||
---
|
||||
|
||||
# iis-oi-metrology-viewer-4432
|
8
port/iis-oi-metrology-viewer-802.md
Normal file
8
port/iis-oi-metrology-viewer-802.md
Normal file
@ -0,0 +1,8 @@
|
||||
---
|
||||
type: "port"
|
||||
assigned: ""
|
||||
created: "2024-01-06T01:25:36.338Z"
|
||||
updated: "2024-01-06T01:25:36.338Z"
|
||||
---
|
||||
|
||||
# iis-oi-metrology-viewer-802
|
8
port/iis-oi-metrology-viewer-server-443.md
Normal file
8
port/iis-oi-metrology-viewer-server-443.md
Normal file
@ -0,0 +1,8 @@
|
||||
---
|
||||
type: "port"
|
||||
assigned: ""
|
||||
created: "2024-01-06T01:25:36.266Z"
|
||||
updated: "2024-01-06T01:25:36.266Z"
|
||||
---
|
||||
|
||||
# iis-oi-metrology-viewer-server-443
|
12
port/iis-oi-metrology-viewer-server-50301.md
Normal file
12
port/iis-oi-metrology-viewer-server-50301.md
Normal file
@ -0,0 +1,12 @@
|
||||
---
|
||||
type: "port"
|
||||
assigned: ""
|
||||
created: "2024-01-06T01:25:36.266Z"
|
||||
updated: "2024-01-06T01:25:36.266Z"
|
||||
---
|
||||
|
||||
# iis-oi-metrology-viewer-server-50301
|
||||
|
||||
```bash
|
||||
# http://localhost:50301/api/tooltypes
|
||||
```
|
8
port/iis-oi-metrology-viewer-server-80.md
Normal file
8
port/iis-oi-metrology-viewer-server-80.md
Normal file
@ -0,0 +1,8 @@
|
||||
---
|
||||
type: "port"
|
||||
assigned: ""
|
||||
created: "2024-01-06T01:25:36.336Z"
|
||||
updated: "2024-01-06T01:25:36.336Z"
|
||||
---
|
||||
|
||||
# iis-oi-metrology-viewer-server-80
|
12
port/nginx-cde4-json-80.md
Normal file
12
port/nginx-cde4-json-80.md
Normal file
@ -0,0 +1,12 @@
|
||||
---
|
||||
type: "port"
|
||||
assigned: ""
|
||||
physical-address: "00:D8:61:01:BC:66"
|
||||
namespace: "MET08RESIMAPCDE"
|
||||
created: "2024-01-06T01:25:36.267Z"
|
||||
updated: "2024-01-06T01:25:36.267Z"
|
||||
---
|
||||
|
||||
# nginx-cde4-json-80
|
||||
|
||||
- [ ] [json](http://10.95.154.27:80/)
|
12
port/nginx-cde5-json-80.md
Normal file
12
port/nginx-cde5-json-80.md
Normal file
@ -0,0 +1,12 @@
|
||||
---
|
||||
type: "port"
|
||||
assigned: ""
|
||||
physical-address: "00:01:29:6A:8F:AB"
|
||||
namespace: "MET08RESIMAPCDE"
|
||||
created: "2024-01-06T01:25:36.328Z"
|
||||
updated: "2024-01-06T01:25:36.328Z"
|
||||
---
|
||||
|
||||
# nginx-cde5-json-80
|
||||
|
||||
- [ ] [json](http://10.95.154.29:80/)
|
12
port/nginx-cde6-json-80.md
Normal file
12
port/nginx-cde6-json-80.md
Normal file
@ -0,0 +1,12 @@
|
||||
---
|
||||
type: "port"
|
||||
assigned: ""
|
||||
physical-address: "00:01:29:A1:F1:45"
|
||||
namespace: "MET08RESIMAPCDE"
|
||||
created: "2024-01-06T01:25:36.269Z"
|
||||
updated: "2024-01-06T01:25:36.269Z"
|
||||
---
|
||||
|
||||
# nginx-cde6-json-80
|
||||
|
||||
- [ ] [json](http://10.95.154.14:80/)
|
8
port/nginx-ecapcsvc-json-5052.md
Normal file
8
port/nginx-ecapcsvc-json-5052.md
Normal file
@ -0,0 +1,8 @@
|
||||
---
|
||||
type: "port"
|
||||
assigned: ""
|
||||
created: "2024-01-06T01:25:36.326Z"
|
||||
updated: "2024-01-06T01:25:36.326Z"
|
||||
---
|
||||
|
||||
# nginx-ecapcsvc-json-5052
|
8
port/nginx-ecfisysadmin-archive-5001.md
Normal file
8
port/nginx-ecfisysadmin-archive-5001.md
Normal file
@ -0,0 +1,8 @@
|
||||
---
|
||||
type: "port"
|
||||
assigned: ""
|
||||
created: "2024-01-06T01:25:36.269Z"
|
||||
updated: "2024-01-06T01:25:36.269Z"
|
||||
---
|
||||
|
||||
# nginx-ecfisysadmin-archive-5001
|
8
port/nginx-ecfisysadmin-archive-8080.md
Normal file
8
port/nginx-ecfisysadmin-archive-8080.md
Normal file
@ -0,0 +1,8 @@
|
||||
---
|
||||
type: "port"
|
||||
assigned: ""
|
||||
created: "2024-01-06T01:25:36.270Z"
|
||||
updated: "2024-01-06T01:25:36.270Z"
|
||||
---
|
||||
|
||||
# nginx-ecfisysadmin-archive-8080
|
8
port/nginx-ecfisysadmin-viewer-5004.md
Normal file
8
port/nginx-ecfisysadmin-viewer-5004.md
Normal file
@ -0,0 +1,8 @@
|
||||
---
|
||||
type: "port"
|
||||
assigned: ""
|
||||
created: "2024-01-06T01:25:36.272Z"
|
||||
updated: "2024-01-06T01:25:36.272Z"
|
||||
---
|
||||
|
||||
# nginx-ecfisysadmin-viewer-5004
|
8
port/nginx-ecfisysadmin-viewer-8080.md
Normal file
8
port/nginx-ecfisysadmin-viewer-8080.md
Normal file
@ -0,0 +1,8 @@
|
||||
---
|
||||
type: "port"
|
||||
assigned: ""
|
||||
created: "2024-01-06T01:25:36.272Z"
|
||||
updated: "2024-01-06T01:25:36.272Z"
|
||||
---
|
||||
|
||||
# nginx-ecfisysadmin-viewer-8080
|
11
port/nginx-srp-dex-5052.md
Normal file
11
port/nginx-srp-dex-5052.md
Normal file
@ -0,0 +1,11 @@
|
||||
---
|
||||
type: "port"
|
||||
assigned: ""
|
||||
physical-address: "00:10:5A:CB:C6:5B"
|
||||
created: "2024-01-06T01:25:36.272Z"
|
||||
updated: "2024-01-06T01:25:36.272Z"
|
||||
---
|
||||
|
||||
# nginx-srp-dex-5052
|
||||
|
||||
- [ ] [dex](http://10.95.154.30:5052/)
|
11
port/nginx-srp-json-5054.md
Normal file
11
port/nginx-srp-json-5054.md
Normal file
@ -0,0 +1,11 @@
|
||||
---
|
||||
type: "port"
|
||||
assigned: ""
|
||||
physical-address: "00:10:5A:CB:C6:5B"
|
||||
created: "2024-01-06T01:25:36.273Z"
|
||||
updated: "2024-01-06T01:25:36.273Z"
|
||||
---
|
||||
|
||||
# nginx-srp-json-5054
|
||||
|
||||
- [ ] [json](http://10.95.154.30:5054/)
|
14
port/nport-bio-rad-2-950.md
Normal file
14
port/nport-bio-rad-2-950.md
Normal file
@ -0,0 +1,14 @@
|
||||
---
|
||||
type: "port"
|
||||
assigned: ""
|
||||
physical-address: "00:90:E8:6E:3C:18"
|
||||
namespace: "MET08THFTIRQS408M"
|
||||
created: "2024-01-06T01:25:36.326Z"
|
||||
updated: "2024-01-06T01:25:36.326Z"
|
||||
---
|
||||
|
||||
# nPort-bio-rad-2-950
|
||||
|
||||
- [ ] [http](http://192.168.127.254/)
|
||||
- [ ] [http](http://10.95.154.41/)
|
||||
- [ ] [tcp](tcp://10.95.154.41:950/)
|
14
port/nport-bio-rad-3-950.md
Normal file
14
port/nport-bio-rad-3-950.md
Normal file
@ -0,0 +1,14 @@
|
||||
---
|
||||
type: "port"
|
||||
assigned: ""
|
||||
physical-address: "00:90:E8:6E:3C:22"
|
||||
namespace: "MET08THFTIRQS408M"
|
||||
created: "2024-01-06T01:25:36.275Z"
|
||||
updated: "2024-01-06T01:25:36.275Z"
|
||||
---
|
||||
|
||||
# nPort-bio-rad-3-950
|
||||
|
||||
- [ ] [http](http://192.168.127.254/)
|
||||
- [ ] [http](http://10.95.154.42/)
|
||||
- [ ] [tcp](tcp://10.95.154.42:950/)
|
14
port/nport-hgcv1-950.md
Normal file
14
port/nport-hgcv1-950.md
Normal file
@ -0,0 +1,14 @@
|
||||
---
|
||||
type: "port"
|
||||
assigned: ""
|
||||
physical-address: "00:90:E8:6E:3C:26"
|
||||
namespace: "MET08RESIHGCV"
|
||||
created: "2024-01-06T01:25:36.277Z"
|
||||
updated: "2024-01-06T01:25:36.277Z"
|
||||
---
|
||||
|
||||
# nPort-hgcv1-950
|
||||
|
||||
- [ ] [http](http://192.168.127.254/)
|
||||
- [ ] [http](http://10.95.154.39/)
|
||||
- [ ] [tcp](tcp://10.95.154.39:950/)
|
14
port/nport-hgcv2-950.md
Normal file
14
port/nport-hgcv2-950.md
Normal file
@ -0,0 +1,14 @@
|
||||
---
|
||||
type: "port"
|
||||
assigned: ""
|
||||
physical-address: "00:90:E8:6E:3C:35"
|
||||
namespace: "MET08RESIHGCV"
|
||||
created: "2024-01-06T01:25:36.326Z"
|
||||
updated: "2024-01-06T01:25:36.326Z"
|
||||
---
|
||||
|
||||
# nPort-hgcv2-950
|
||||
|
||||
- [ ] [http](http://192.168.127.254/)
|
||||
- [ ] [http](http://10.95.154.17/)
|
||||
- [ ] [tcp](tcp://10.95.154.17:950/)
|
14
port/nport-hgcv3-950.md
Normal file
14
port/nport-hgcv3-950.md
Normal file
@ -0,0 +1,14 @@
|
||||
---
|
||||
type: "port"
|
||||
assigned: ""
|
||||
physical-address: "00:90:E8:6E:3C:23"
|
||||
namespace: "MET08RESIHGCV"
|
||||
created: "2024-01-06T01:25:36.279Z"
|
||||
updated: "2024-01-06T01:25:36.279Z"
|
||||
---
|
||||
|
||||
# nPort-hgcv3-950
|
||||
|
||||
- [ ] [http](http://192.168.127.254/)
|
||||
- [ ] [http](http://10.95.154.40/)
|
||||
- [ ] [tcp](tcp://10.95.154.40:950/)
|
14
port/nport-tencor1-950.md
Normal file
14
port/nport-tencor1-950.md
Normal file
@ -0,0 +1,14 @@
|
||||
---
|
||||
type: "port"
|
||||
assigned: ""
|
||||
physical-address: "00:90:E8:65:1F:2B"
|
||||
namespace: "MET08DDUPSFS6420"
|
||||
created: "2024-01-06T01:25:36.298Z"
|
||||
updated: "2024-01-06T01:25:36.298Z"
|
||||
---
|
||||
|
||||
# nPort-tencor1-950
|
||||
|
||||
- [ ] [http](http://192.168.127.254/)
|
||||
- [ ] [http](http://10.95.154.36/)
|
||||
- [ ] [tcp](tcp://10.95.154.36:950/)
|
14
port/nport-tencor2-950.md
Normal file
14
port/nport-tencor2-950.md
Normal file
@ -0,0 +1,14 @@
|
||||
---
|
||||
type: "port"
|
||||
assigned: ""
|
||||
physical-address: "00:90:E8:6E:3C:24"
|
||||
namespace: "MET08DDUPSFS6420"
|
||||
created: "2024-01-06T01:25:36.298Z"
|
||||
updated: "2024-01-06T01:25:36.298Z"
|
||||
---
|
||||
|
||||
# nPort-tencor2-950
|
||||
|
||||
- [ ] [http](http://192.168.127.254/)
|
||||
- [ ] [http](http://10.95.154.37/)
|
||||
- [ ] [tcp](tcp://10.95.154.37:950/)
|
14
port/nport-tencor3-950.md
Normal file
14
port/nport-tencor3-950.md
Normal file
@ -0,0 +1,14 @@
|
||||
---
|
||||
type: "port"
|
||||
assigned: ""
|
||||
physical-address: "00:90:E8:6E:3C:1E"
|
||||
namespace: "MET08DDUPSFS6420"
|
||||
created: "2024-01-06T01:25:36.318Z"
|
||||
updated: "2024-01-06T01:25:36.318Z"
|
||||
---
|
||||
|
||||
# nPort-tencor3-950
|
||||
|
||||
- [ ] [http](http://192.168.127.254/)
|
||||
- [ ] [http](http://10.95.154.38/)
|
||||
- [ ] [tcp](tcp://10.95.154.38:950/)
|
19
port/nport-wc6inch1-950.md
Normal file
19
port/nport-wc6inch1-950.md
Normal file
@ -0,0 +1,19 @@
|
||||
---
|
||||
type: "port"
|
||||
assigned: ""
|
||||
physical-address: "00:90:E8:6E:3B:F0"
|
||||
created: "2024-01-06T01:25:36.326Z"
|
||||
updated: "2024-01-06T01:25:36.326Z"
|
||||
---
|
||||
|
||||
# nPort-wc6inch1-950
|
||||
|
||||
- [ ] [http](http://192.168.127.254/)
|
||||
- [x] Server Name
|
||||
- [x] DHCP
|
||||
- [x] Serial - Port 1
|
||||
- [ ] [http](http://10.95.154.43/)
|
||||
- [ ] [tcp](tcp://10.95.154.43:950/)
|
||||
- [FQA-6INCH](\\mesfs.infineon.com\EC_Characterization_Si\WaferCounter\FQA\6INCH)
|
||||
|
||||
## Was CDE2 -> See CDE2-EQPT
|
20
port/nport-wc6inch2-950.md
Normal file
20
port/nport-wc6inch2-950.md
Normal file
@ -0,0 +1,20 @@
|
||||
---
|
||||
type: "port"
|
||||
assigned: ""
|
||||
physical-address: "00:90:E8:6E:3C:30"
|
||||
created: "2024-01-14T02:17:45.912Z"
|
||||
updated: "2024-03-06T16:18:10.225Z"
|
||||
---
|
||||
|
||||
# nport-wc6inch2-950
|
||||
|
||||
- [ ] [http](http://192.168.127.254/)
|
||||
- [x] Server Name
|
||||
- [x] DHCP
|
||||
- [x] Serial - Port 1
|
||||
- [ ] [http](http://10.95.154.44/)
|
||||
- [ ] [tcp](tcp://10.95.154.44:950/)
|
||||
- [MU-6INCH](\\mesfs.infineon.com\EC_Characterization_Si\WaferCounter\MU\6INCH)
|
||||
|
||||
## Was CDE5 -> See CDE5-EQPT
|
||||
## Was Spare1
|
23
port/nport-wc6inch3-950.md
Normal file
23
port/nport-wc6inch3-950.md
Normal file
@ -0,0 +1,23 @@
|
||||
---
|
||||
type: "port"
|
||||
assigned: ""
|
||||
physical-address: "00:90:E8:6E:3C:37"
|
||||
created: "2024-01-14T02:17:43.880Z"
|
||||
updated: "2024-03-06T19:55:41.693Z"
|
||||
---
|
||||
|
||||
# nport-wc6inch3-950
|
||||
|
||||
- [ ] [http](http://192.168.127.254/)
|
||||
- [x] Server Name
|
||||
- [x] DHCP
|
||||
- [x] Serial - Port 1
|
||||
- [x] Re-request DHCP reservation because of typo 00:90:E8:6E:3C:31 to 00:90:E8:6E:3C:37
|
||||
- [ ] ~~[http](http://10.95.154.45/)~~
|
||||
- [ ] [http](http://10.95.154.19/)
|
||||
- [ ] [tcp](tcp://10.95.154.19:950/)
|
||||
- [EPP-West-6INCH](\\mesfs.infineon.com\EC_Characterization_Si\WaferCounter\EPP-East\6INCH)
|
||||
|
||||
## Not 00:90:E8:6E:3C:31
|
||||
|
||||
## Was Spare2
|
19
port/nport-wc6inch4-950.md
Normal file
19
port/nport-wc6inch4-950.md
Normal file
@ -0,0 +1,19 @@
|
||||
---
|
||||
type: "port"
|
||||
assigned: ""
|
||||
physical-address: "00:90:E8:6E:3C:1D"
|
||||
created: "2024-03-05T01:23:57.081Z"
|
||||
updated: "2024-03-06T16:20:13.077Z"
|
||||
---
|
||||
|
||||
# nport-wc6inch4-950
|
||||
|
||||
- [ ] [http](http://192.168.127.254/)
|
||||
- [x] Server Name
|
||||
- [x] DHCP
|
||||
- [x] Serial - Port 1
|
||||
- [ ] [http](http://10.95.154.46/)
|
||||
- [ ] [tcp](tcp://10.95.154.46:950/)
|
||||
- [EPP-East-6INCH](\\mesfs.infineon.com\EC_Characterization_Si\WaferCounter\EPP-West\6INCH)
|
||||
|
||||
# was spare3
|
19
port/nport-wc8inch1-950.md
Normal file
19
port/nport-wc8inch1-950.md
Normal file
@ -0,0 +1,19 @@
|
||||
---
|
||||
type: "port"
|
||||
assigned: ""
|
||||
physical-address: "00:90:E8:6E:3C:19"
|
||||
created: "2024-03-05T01:23:57.082Z"
|
||||
updated: "2024-03-06T16:18:10.225Z"
|
||||
---
|
||||
|
||||
# nport-wc8inch1-950
|
||||
|
||||
- [ ] [http](http://192.168.127.254/)
|
||||
- [x] Server Name
|
||||
- [x] DHCP
|
||||
- [x] Serial - Port 1
|
||||
- [ ] [http](http://10.95.154.47/)
|
||||
- [ ] [tcp](tcp://10.95.154.47:950/)
|
||||
- [FQA-8INCH](\\mesfs.infineon.com\EC_Characterization_Si\WaferCounter\FQA\8INCH)
|
||||
|
||||
## was spare4
|
19
port/nport-wc8inch2-950.md
Normal file
19
port/nport-wc8inch2-950.md
Normal file
@ -0,0 +1,19 @@
|
||||
---
|
||||
type: "port"
|
||||
assigned: ""
|
||||
physical-address: "00:90:E8:6E:3C:1A"
|
||||
created: "2024-03-05T01:23:57.083Z"
|
||||
updated: "2024-03-06T16:18:00.878Z"
|
||||
---
|
||||
|
||||
# nport-wc8inch2-950
|
||||
|
||||
- [ ] [http](http://192.168.127.254/)
|
||||
- [x] Server Name
|
||||
- [x] DHCP
|
||||
- [x] Serial - Port 1
|
||||
- [ ] [http](http://10.95.154.48/)
|
||||
- [ ] [tcp](tcp://10.95.154.48:950/)
|
||||
- [MU-8INCH](\\mesfs.infineon.com\EC_Characterization_Si\WaferCounter\MU\8INCH)
|
||||
|
||||
## was spare5
|
19
port/nport-wc8inch3-950.md
Normal file
19
port/nport-wc8inch3-950.md
Normal file
@ -0,0 +1,19 @@
|
||||
---
|
||||
type: "port"
|
||||
assigned: ""
|
||||
physical-address: "00:90:E8:6E:3C:36"
|
||||
created: "2024-03-05T01:23:57.084Z"
|
||||
updated: "2024-03-06T16:18:10.225Z"
|
||||
---
|
||||
|
||||
# nport-wc8inch3-950
|
||||
|
||||
- [ ] [http](http://192.168.127.254/)
|
||||
- [x] Server Name
|
||||
- [x] DHCP
|
||||
- [x] Serial - Port 1
|
||||
- [ ] [http](http://10.95.154.49/)
|
||||
- [ ] [tcp](tcp://10.95.154.49:950/)
|
||||
- [EPP-West-8INCH](\\mesfs.infineon.com\EC_Characterization_Si\WaferCounter\EPP-East\8INCH)
|
||||
|
||||
## was spare6
|
12
port/oi-metrology-archive-5001.md
Normal file
12
port/oi-metrology-archive-5001.md
Normal file
@ -0,0 +1,12 @@
|
||||
---
|
||||
type: "port"
|
||||
assigned: ""
|
||||
created: "2024-01-06T01:25:36.298Z"
|
||||
updated: "2024-01-06T01:25:36.298Z"
|
||||
---
|
||||
|
||||
# oi-metrology-archive-5001
|
||||
|
||||
```
|
||||
[x] http://localhost:5001/api/tooltypes
|
||||
```
|
12
port/oi-metrology-viewer-5004.md
Normal file
12
port/oi-metrology-viewer-5004.md
Normal file
@ -0,0 +1,12 @@
|
||||
---
|
||||
type: "port"
|
||||
assigned: ""
|
||||
created: "2024-01-06T01:25:36.318Z"
|
||||
updated: "2024-01-06T01:25:36.318Z"
|
||||
---
|
||||
|
||||
# oi-metrology-viewer-5004
|
||||
|
||||
```
|
||||
[x] http://localhost:5004/api/tooltypes
|
||||
```
|
12
port/plc-r47-102.md
Normal file
12
port/plc-r47-102.md
Normal file
@ -0,0 +1,12 @@
|
||||
---
|
||||
type: "port"
|
||||
assigned: ""
|
||||
physical-address: "00:0E:8C:C9:C7:E5"
|
||||
namespace: "DEP08SIHTRPLC"
|
||||
created: "2024-01-06T01:25:36.298Z"
|
||||
updated: "2024-01-06T01:25:36.298Z"
|
||||
---
|
||||
|
||||
# plc-r47-102
|
||||
|
||||
- [ ] [tcp](tcp://10.95.1.195:102/)
|
12
port/plc-r70-102.md
Normal file
12
port/plc-r70-102.md
Normal file
@ -0,0 +1,12 @@
|
||||
---
|
||||
type: "port"
|
||||
assigned: ""
|
||||
physical-address: "28:63:36:64:11:11"
|
||||
namespace: "DEP08SIHTRPLC"
|
||||
created: "2024-01-06T01:25:36.298Z"
|
||||
updated: "2024-01-06T01:25:36.298Z"
|
||||
---
|
||||
|
||||
# plc-r70-102
|
||||
|
||||
- [ ] [tcp](tcp://10.95.1.191:102/)
|
12
port/plc-r72-102.md
Normal file
12
port/plc-r72-102.md
Normal file
@ -0,0 +1,12 @@
|
||||
---
|
||||
type: "port"
|
||||
assigned: ""
|
||||
physical-address: "00:0E:8C:C9:C7:CD"
|
||||
namespace: "DEP08SIHTRPLC"
|
||||
created: "2024-01-06T01:25:36.318Z"
|
||||
updated: "2024-01-06T01:25:36.318Z"
|
||||
---
|
||||
|
||||
# plc-r72-102
|
||||
|
||||
- [ ] [tcp](tcp://10.95.1.183:102/)
|
12
port/plc-r73-102.md
Normal file
12
port/plc-r73-102.md
Normal file
@ -0,0 +1,12 @@
|
||||
---
|
||||
type: "port"
|
||||
assigned: ""
|
||||
physical-address: "00:0E:8C:AF:4D:A8"
|
||||
namespace: "DEP08SIHTRPLC"
|
||||
created: "2024-01-06T01:25:36.303Z"
|
||||
updated: "2024-01-06T01:25:36.303Z"
|
||||
---
|
||||
|
||||
# plc-r73-102
|
||||
|
||||
- [ ] [tcp](tcp://10.95.1.192:102/)
|
12
port/plc-r74-102.md
Normal file
12
port/plc-r74-102.md
Normal file
@ -0,0 +1,12 @@
|
||||
---
|
||||
type: "port"
|
||||
assigned: ""
|
||||
physical-address: "00:0E:8C:C9:C9:5C"
|
||||
namespace: "DEP08SIHTRPLC"
|
||||
created: "2024-01-06T01:25:36.303Z"
|
||||
updated: "2024-01-06T01:25:36.303Z"
|
||||
---
|
||||
|
||||
# plc-r74-102
|
||||
|
||||
- [ ] [tcp](tcp://10.95.1.180:102/)
|
12
port/rdv-http-8801.md
Normal file
12
port/rdv-http-8801.md
Normal file
@ -0,0 +1,12 @@
|
||||
---
|
||||
type: "port"
|
||||
tags: ["Prod"]
|
||||
created: "2024-01-06T01:25:36.304Z"
|
||||
updated: "2024-01-06T01:25:36.304Z"
|
||||
---
|
||||
|
||||
# rdv-http-8801
|
||||
|
||||
- file://messv02ecc1.ec.local/EC_YODAConfig/MC2UC/Centralized_Configuration_5.xml
|
||||
|
||||
## TIBRVD_8801
|
12
port/rdv-http-8802.md
Normal file
12
port/rdv-http-8802.md
Normal file
@ -0,0 +1,12 @@
|
||||
---
|
||||
type: "port"
|
||||
tags: ["Dev"]
|
||||
created: "2024-01-06T01:25:36.303Z"
|
||||
updated: "2024-01-06T01:25:36.303Z"
|
||||
---
|
||||
|
||||
# rdv-http-8802
|
||||
|
||||
- file://messdv003.infineon.com/yodaconfig/MC2UC/Centralized_Configuration_4.xml
|
||||
|
||||
## MESXS015_8802
|
12
port/rdv-http-8803.md
Normal file
12
port/rdv-http-8803.md
Normal file
@ -0,0 +1,12 @@
|
||||
---
|
||||
type: "port"
|
||||
tags: ["Prod"]
|
||||
created: "2024-01-06T01:25:36.304Z"
|
||||
updated: "2024-01-06T01:25:36.304Z"
|
||||
---
|
||||
|
||||
# rdv-http-8803
|
||||
|
||||
- file://messv02ecc1.ec.local/EC_YODAConfig/MC2UC/Centralized_Configuration_5.xml
|
||||
|
||||
## TIBRVD_8803
|
12
port/rdv-http-8804.md
Normal file
12
port/rdv-http-8804.md
Normal file
@ -0,0 +1,12 @@
|
||||
---
|
||||
type: "port"
|
||||
tags: ["Stage"]
|
||||
created: "2024-01-06T01:25:36.308Z"
|
||||
updated: "2024-01-06T01:25:36.308Z"
|
||||
---
|
||||
|
||||
# rdv-http-8804
|
||||
|
||||
- file://messv02ecc1.ec.local/EC_YODAConfig/MC2UC/Centralized_Configuration_5.xml
|
||||
|
||||
## TIBRVD_8804
|
12
port/rtsp-r34-554.md
Normal file
12
port/rtsp-r34-554.md
Normal file
@ -0,0 +1,12 @@
|
||||
---
|
||||
type: "port"
|
||||
assigned: ""
|
||||
physical-address: "00:13:14:02:BB:F7"
|
||||
namespace: "DEP08SIASM"
|
||||
created: "2024-01-06T01:25:36.308Z"
|
||||
updated: "2024-01-06T01:25:36.308Z"
|
||||
---
|
||||
|
||||
# rtsp-r34-554
|
||||
|
||||
- [ ] [rtsp](http://10.95.154.28:554/)
|
12
port/rtsp-r53-554.md
Normal file
12
port/rtsp-r53-554.md
Normal file
@ -0,0 +1,12 @@
|
||||
---
|
||||
type: "port"
|
||||
assigned: ""
|
||||
physical-address: "00:13:14:02:BD:67"
|
||||
namespace: "DEP08SIASM"
|
||||
created: "2024-01-06T01:25:36.318Z"
|
||||
updated: "2024-01-06T01:25:36.318Z"
|
||||
---
|
||||
|
||||
# rtsp-r53-554
|
||||
|
||||
- [ ] [rtsp](http://10.95.154.31:554/)
|
12
port/rtsp-r55-554.md
Normal file
12
port/rtsp-r55-554.md
Normal file
@ -0,0 +1,12 @@
|
||||
---
|
||||
type: "port"
|
||||
assigned: ""
|
||||
physical-address: "00:13:14:02:B8:B7"
|
||||
namespace: "DEP08SIASM"
|
||||
created: "2024-01-06T01:25:36.308Z"
|
||||
updated: "2024-01-06T01:25:36.308Z"
|
||||
---
|
||||
|
||||
# rtsp-r55-554
|
||||
|
||||
- [ ] [rtsp](http://10.95.154.32:554/)
|
11
port/secs-gem-spv-5004.md
Normal file
11
port/secs-gem-spv-5004.md
Normal file
@ -0,0 +1,11 @@
|
||||
---
|
||||
type: "port"
|
||||
assigned: ""
|
||||
physical-address: "C4:00:AD:23:90:F5"
|
||||
created: "2024-01-06T01:25:36.310Z"
|
||||
updated: "2024-01-06T01:25:36.310Z"
|
||||
---
|
||||
|
||||
# SECS/GEM-SPV-5004
|
||||
|
||||
- [ ] [SECS/GEM](http://10.95.154.20:5004/)
|
10
port/secs-gem-t21-5010.md
Normal file
10
port/secs-gem-t21-5010.md
Normal file
@ -0,0 +1,10 @@
|
||||
---
|
||||
type: "port"
|
||||
assigned: ""
|
||||
created: "2024-01-06T01:25:36.310Z"
|
||||
updated: "2024-01-06T01:25:36.310Z"
|
||||
---
|
||||
|
||||
# SECS/GEM-T21-5010
|
||||
|
||||
- [ ] [SECS/GEM](http://10.95.154.###:5010/)
|
10
port/secs-gem-t27-5010.md
Normal file
10
port/secs-gem-t27-5010.md
Normal file
@ -0,0 +1,10 @@
|
||||
---
|
||||
type: "port"
|
||||
assigned: ""
|
||||
created: "2024-01-06T01:25:36.318Z"
|
||||
updated: "2024-01-06T01:25:36.318Z"
|
||||
---
|
||||
|
||||
# SECS/GEM-T27-5010
|
||||
|
||||
- [ ] [SECS/GEM](http://10.95.154.###:5010/)
|
12
port/smtp-25.md
Normal file
12
port/smtp-25.md
Normal file
@ -0,0 +1,12 @@
|
||||
---
|
||||
type: "port"
|
||||
assigned: ""
|
||||
created: "2024-01-06T01:25:36.310Z"
|
||||
updated: "2024-01-06T01:25:36.310Z"
|
||||
---
|
||||
|
||||
# smtp-25
|
||||
|
||||
## Info
|
||||
|
||||
mailrelay-internal.infineon.com
|
14
port/tibco-7701.md
Normal file
14
port/tibco-7701.md
Normal file
@ -0,0 +1,14 @@
|
||||
---
|
||||
type: "port"
|
||||
tags: ["Prod"]
|
||||
created: "2024-01-06T01:25:36.310Z"
|
||||
updated: "2024-01-06T01:25:36.310Z"
|
||||
---
|
||||
|
||||
# tibco-7701
|
||||
|
||||
- file://messv02ecc1.ec.local/EC_YODAConfig/MC2UC/Centralized_Configuration_5.xml
|
||||
|
||||
## MES_P_PROD
|
||||
|
||||
## MES_P_MES
|
12
port/tibco-7702.md
Normal file
12
port/tibco-7702.md
Normal file
@ -0,0 +1,12 @@
|
||||
---
|
||||
type: "port"
|
||||
tags: ["Dev"]
|
||||
created: "2024-01-06T01:25:36.310Z"
|
||||
updated: "2024-01-06T01:25:36.310Z"
|
||||
---
|
||||
|
||||
# tibco-7702
|
||||
|
||||
- file://messdv003.infineon.com/yodaconfig/MC2UC/Centralized_Configuration_4.xml
|
||||
|
||||
## MES_T_TEST
|
12
port/tibco-7703.md
Normal file
12
port/tibco-7703.md
Normal file
@ -0,0 +1,12 @@
|
||||
---
|
||||
type: "port"
|
||||
tags: ["Prod"]
|
||||
created: "2024-01-06T01:25:36.310Z"
|
||||
updated: "2024-01-06T01:25:36.310Z"
|
||||
---
|
||||
|
||||
# tibco-7703
|
||||
|
||||
- file://messv02ecc1.ec.local/EC_YODAConfig/MC2UC/Centralized_Configuration_5.xml
|
||||
|
||||
## MES_P_MEI
|
16
port/tibco-7704.md
Normal file
16
port/tibco-7704.md
Normal file
@ -0,0 +1,16 @@
|
||||
---
|
||||
type: "port"
|
||||
tags: ["Stage"]
|
||||
created: "2024-01-06T01:25:36.310Z"
|
||||
updated: "2024-01-06T01:25:36.310Z"
|
||||
---
|
||||
|
||||
# tibco-7704
|
||||
|
||||
- file://messv02ecc1.ec.local/EC_YODAConfig/MC2UC/Centralized_Configuration_5.xml
|
||||
|
||||
## MES_S_STAGE
|
||||
|
||||
## MES_S_MES
|
||||
|
||||
## MES_S_MEI
|
12
port/trdprvd64-listen-8801.md
Normal file
12
port/trdprvd64-listen-8801.md
Normal file
@ -0,0 +1,12 @@
|
||||
---
|
||||
type: "port"
|
||||
assigned: ""
|
||||
created: "2024-01-06T01:25:36.314Z"
|
||||
updated: "2024-01-06T01:25:36.314Z"
|
||||
---
|
||||
|
||||
# trdprvd64-listen-8801
|
||||
|
||||
```bash
|
||||
ps -ef | grep tibco
|
||||
```
|
8
port/trdprvd64-listen-8803.md
Normal file
8
port/trdprvd64-listen-8803.md
Normal file
@ -0,0 +1,8 @@
|
||||
---
|
||||
type: "port"
|
||||
assigned: ""
|
||||
created: "2024-01-06T01:25:36.314Z"
|
||||
updated: "2024-01-06T01:25:36.314Z"
|
||||
---
|
||||
|
||||
# trdprvd64-listen-8803
|
8
port/trdprvd64-listen-8804.md
Normal file
8
port/trdprvd64-listen-8804.md
Normal file
@ -0,0 +1,8 @@
|
||||
---
|
||||
type: "port"
|
||||
assigned: ""
|
||||
created: "2024-01-06T01:25:36.316Z"
|
||||
updated: "2024-01-06T01:25:36.316Z"
|
||||
---
|
||||
|
||||
# trdprvd64-listen-8804
|
17
port/ubuntu-unity4-9400.md
Normal file
17
port/ubuntu-unity4-9400.md
Normal file
@ -0,0 +1,17 @@
|
||||
---
|
||||
type: "port"
|
||||
assigned: ""
|
||||
ip: "10.95.154.9"
|
||||
physical-address: "6C:0B:84:E3:AD:7E"
|
||||
os: "Ubuntu 20.04.6 LTS (GNU/Linux 5.4.0-152-generic x86_64)"
|
||||
created: "2024-01-06T01:25:36.318Z"
|
||||
updated: "2024-01-06T01:25:36.318Z"
|
||||
---
|
||||
|
||||
# ubuntu-unity4-9400
|
||||
|
||||
- [ ] [http](http://eaf-staging.mes.infineon.com:8080/api/Barcode/BIORAD#)
|
||||
|
||||
```c#
|
||||
HttpSelfHostConfiguration config = new("http://localhost:8080/");
|
||||
```
|
17
port/ubuntu-unity5-9400.md
Normal file
17
port/ubuntu-unity5-9400.md
Normal file
@ -0,0 +1,17 @@
|
||||
---
|
||||
type: "port"
|
||||
assigned: ""
|
||||
ip: "10.95.154.18"
|
||||
physical-address: "6C:0B:84:E3:94:11"
|
||||
os: "Ubuntu 22.04.2 LTS (GNU/Linux 5.15.0-73-generic x86_64)"
|
||||
created: "2024-01-06T01:25:36.316Z"
|
||||
updated: "2024-01-06T01:25:36.316Z"
|
||||
---
|
||||
|
||||
# ubuntu-unity5-9400
|
||||
|
||||
- [ ] [http](http://eaf-staging.mes.infineon.com:8080/api/Barcode/BIORAD#)
|
||||
|
||||
```c#
|
||||
HttpSelfHostConfiguration config = new("http://localhost:8080/");
|
||||
```
|
Reference in New Issue
Block a user