Thanks — that screenshot from the MFP means the device failed to connect to the FTP server immediately (no transfer attempt). That narrows it to either: (A) the MFP never reached port 21 on the server (network / firewall / wrong port), or (B) the server rejected the connection before login (listener not bound / wrong listener), or (C) the MFP settings (port, passive mode, file path, username) are wrong. We’ll quickly isolate which.
Do these checks in order and paste back the outputs / log lines you see:
Step 1 — Watch the FileZilla admin log while you press Start on the MFP
- Open the FileZilla Server administration window (the one with the message area).
- Leave it visible and press Start on the MFP to do the test scan.
- Immediately look at the FileZilla admin log area — you should see a connection attempt (IP of the MFP), a USER and PASS line, or an error. Copy/paste the exact lines you see (or take a screenshot).
If you see nothing in the FileZilla log when the MFP tries, the MFP never reached the server (network/firewall/port).
Step 2 — Confirm FileZilla is listening on port 21
Run these in an elevated PowerShell on 192.168.0.26 (copy/paste):
check a listener on port 21
netstat -an | findstr ":21 "
or PowerShell alternate
Get-NetTCPConnection -LocalPort 21 -State Listen
Expected: you should see an ENTRY with Local Address 0.0.0.0:21 or 192.168.0.26:21 and State LISTENING. Paste the output.
Step 3 — Confirm firewall rule exists and is enabled
In an elevated PowerShell run:
Get-NetFirewallRule -DisplayName "Allow FTP from MFP (control)","Allow FTP Passive from MFP" | Format-Table DisplayName,Enabled,Direction,Action,Profile
If those exact rules aren’t shown, run this to list any FTP-related rules:
Get-NetFirewallRule | Where-Object {$_.DisplayName -like "
FTP"} | Format-Table DisplayName,Enabled,Direction,Action,Profile
Paste the output. If your rule shows RemoteAddress restricted, confirm it is 192.168.0.39.
Step 4 — Quick network test from another PC (isolates MFP)
From a different PC on the same network (not the FTP host), test with FileZilla Client or the built-in Windows ftp client. In FileZilla Client set:
- Host: 192.168.0.26
- Port: 21
- User: Scanner
- Password: (Scanner password)
- Transfer mode: Passive (PASV)
Try to connect and upload a small file. If that works, server and firewall are OK and the problem is MFP settings. If it fails to connect, post the client error message.
Step 5 — If no log entries in FileZilla when MFP tries: quickly test loosening the firewall for a moment
(Temporarily allow any remote to port 21 so we can confirm firewall filtering is the issue — only do this briefly)
Run as admin on the FTP host:
New-NetFirewallRule -DisplayName "Allow FTP from ANY (temp test)" -Direction Inbound -Action Allow -Protocol TCP -LocalPort 21 -RemoteAddress Any
Then try an MFP test scan again. If it now connects, the initial firewall rule was blocking the MFP (likely because RemoteAddress didn’t match or MFP IP changed). If it still fails with no FileZilla log, revert the rule and we’ll continue deeper diagnostics.
Remove the temp rule when done:
Remove-NetFirewallRule -DisplayName "Allow FTP from ANY (temp test)"
Step 6 — Verify FileZilla user + mountpoint + passive settings (quick checklist)
- In FileZilla Settings → Rights management → Users:
- User Scanner exists and “User is enabled” is checked.
- Authentication set to Password (and password field filled).
- Mountpoint present with Virtual path "/" mapped to Native path C:\Scans-Konica.
- Permissions: List, Read and Write (and Create/Delete/Append) are checked.
- In Settings → Passive mode: the same port range you opened in firewall (e.g. 50000–50010) is set.
- In Server listeners: a listener exists for port 21 (IPv4).
Step 7 — MFP PageScope settings to re-check
- Protocol: FTP (not SMB)
- Host Address: 192.168.0.26
- Port: 21
- File Path: / (or blank) — try both
- Transfer Mode: Passive (PASV)
- User ID: Scanner
- Password: (exact password set in FileZilla)
- If you enabled FTPS in FileZilla and set “Require TLS”, make sure you enabled FTPS on the MFP as well and check certificate handling. For now, use plain FTP to get it working.
What I need from you now
- The FileZilla admin log lines that appear when you push Start on the MFP (or a screenshot). This is the single most useful item.
- The outputs from Step 2 (netstat/Get-NetTCPConnection) and Step 3 (Get-NetFirewallRule).
- The result of Step 4 (attempt to connect from another PC) — success or exact error message.
With those I’ll tell you exactly what’s blocking the connection and the minimal fix (usually a firewall rule tweak or a small PageScope field change).